Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 25 of 58) sorted by relevance

123

/aoo4110/main/solenv/inc/
H A D_tg_lib.mk30 @-$(RM) $(MISC)/$(LIB1ARCHIV:b).cmd
45 @cat $(MISC)/$(LIB1ARCHIV:b).cmd
47 @+source $(MISC)/$(LIB1ARCHIV:b).cmd
55 @+-$(RM) $(MISC)/$(LIB1ARCHIV:b).cmd
59 @cat $(MISC)/$(LIB1ARCHIV:b).cmd
152 @cat $(MISC)/$(LIB2ARCHIV:b).cmd
166 @cat $(MISC)/$(LIB2ARCHIV:b).cmd
259 @cat $(MISC)/$(LIB3ARCHIV:b).cmd
273 @cat $(MISC)/$(LIB3ARCHIV:b).cmd
366 @cat $(MISC)/$(LIB4ARCHIV:b).cmd
[all …]
H A Dtg_lib.mk35 @-$(RM) $(MISC)/$(LIB$(TNR)ARCHIV:b).cmd
37 @-$(RM) $(MISC)/$(LIB$(TNR)ARCHIV:b)_closetempl.cmd
39 @cat $(MISC)/$(LIB$(TNR)ARCHIV:b)_closetempl.cmd
40 @+source $(MISC)/$(LIB$(TNR)ARCHIV:b)_closetempl.cmd
44 @echo ranlib $(LIB$(TNR)ARCHIV) >> $(MISC)/$(LIB$(TNR)ARCHIV:b).cmd
47 @echo ranlib $(LIB$(TNR)ARCHIV) >> $(MISC)/$(LIB$(TNR)ARCHIV:b).cmd
50 @cat $(MISC)/$(LIB$(TNR)ARCHIV:b).cmd
52 @+source $(MISC)/$(LIB$(TNR)ARCHIV:b).cmd
60 @+-$(RM) $(MISC)/$(LIB$(TNR)ARCHIV:b).cmd
64 @cat $(MISC)/$(LIB$(TNR)ARCHIV:b).cmd
[all …]
/aoo4110/main/scripting/workben/installer/
H A DRegister.java95 String cmd = ""; in register() local
103 cmd = progpath + "pkgchk -s -f " + progpath + packages[i]; in register()
105 System.err.println(cmd); in register()
106 goodResult = command.exec(cmd, env); in register()
110 cmd = "\"" + progpath + "pkgchk.exe\" -s -f \"" + progpath + in register()
113 System.err.println(cmd); in register()
114 goodResult =command.exec(cmd,null); in register()
121 System.err.println("Command: " + cmd + "\n" + env[0]); in register()
123 System.err.println("Command: \"" + cmd + "\""); in register()
H A DExecCmd.java28 public boolean exec( String cmd, String[] env ) in exec() argument
30 System.out.println("About to exectute " + cmd); in exec()
36 p=rt.exec( cmd, env ); in exec()
104 System.out.println("cmd [" + cmd + "] failed" ); in exec()
109 System.out.println("cmd [" + cmd + "] completed successfully"); in exec()
/aoo4110/main/filter/source/t602/
H A Dt602filter.cxx631 unsigned char T602ImportFilter::Setformat602(char *cmd) in Setformat602() argument
638 if (cmd[0]=='M' && cmd[1]=='T') format602.mt = readnum(&ch,false); in Setformat602()
639 else if (cmd[0]=='M' && cmd[1]=='B') format602.mb = readnum(&ch,false); in Setformat602()
643 else if (cmd[0]=='C' && cmd[1]=='T') { in Setformat602()
653 else if (cmd[0]=='P' && cmd[1]=='N') format602.pn = readnum(&ch,false); in Setformat602()
654 else if (cmd[0]=='L' && cmd[1]=='H') format602.lh = readnum(&ch,false); in Setformat602()
656 else if (cmd[0]=='L' && cmd[1]=='M') format602.lm = readnum(&ch,false); in Setformat602()
657 else if (cmd[0]=='R' && cmd[1]=='M') format602.rm = readnum(&ch,false); in Setformat602()
658 else if (cmd[0]=='P' && cmd[1]=='L') format602.pl = readnum(&ch,false); in Setformat602()
659 else if (cmd[0]=='P' && cmd[1]=='A') { if(pst.pars) par602(true); } in Setformat602()
[all …]
/aoo4110/main/pyuno/source/module/
H A Dmakefile.mk136 …FLAGSRUNPATH_OOO) $(LINKFLAGSSHLCUI) -ldl -o $@ $(SLO)$/pyuno_dlopenwrapper.o > $(MISC)$/$(@:b).cmd
138 @echo ld -G -ldl -o $@ $(SLO)$/pyuno_dlopenwrapper.o > $(MISC)$/$(@:b).cmd
140 @echo ld -shared -o $@ $(SLO)$/pyuno_dlopenwrapper.o > $(MISC)$/$(@:b).cmd
142 @echo $(LINK) $(LINKFLAGSSHLCUI) -o $@ $(SLO)$/pyuno_dlopenwrapper.o > $(MISC)$/$(@:b).cmd
144 …o $@ $(SLO)$/pyuno_dlopenwrapper.o $(EXTRA_LINKFLAGS) $(EXTRA_FRAMEWORK_FLAG) > $(MISC)$/$(@:b).cmd
146 @echo $(LINK) $(LINKFLAGSSHLCUI) -o $@ $(SLO)$/pyuno_dlopenwrapper.o > $(MISC)$/$(@:b).cmd
148 cat $(MISC)$/$(@:b).cmd
149 @+source $(MISC)$/$(@:b).cmd
/aoo4110/test/testcommon/source/org/openoffice/test/common/
H A DSystemUtil.java197 String[] cmd; in execScript() local
199 cmd = new String[] { file.getAbsolutePath() }; in execScript()
201 cmd = new String[] { "sh", file.getAbsolutePath() }; in execScript()
202 return exec(cmd, null, null, output, error); in execScript()
220 …public static Process backgroundExec(String[] cmd, String[] env, File dir, StringBuffer output, St… in backgroundExec() argument
222 Process process = Runtime.getRuntime().exec(cmd, env, dir); in backgroundExec()
242 …public static int exec(String[] cmd, String[] env, File dir, StringBuffer output, StringBuffer err… in exec() argument
245 LOG.log(Level.FINE, "exec: " + Arrays.toString(cmd)); in exec()
246 process = Runtime.getRuntime().exec(cmd, env, dir); in exec()
267 public static int exec(String[] cmd, StringBuffer output) { in exec() argument
[all …]
/aoo4110/main/solenv/bin/
H A Dlangwrap55 foreach $cmd (@command) {
57 print $cmd . "\n";
59 system($cmd);
104 my($cmd, $cmdline, $arg_string, $ntempl);
106 $cmd = shift @ARGV;
119 push @command, $cmd . " " . $cmdline;
H A Dsubsequenttests120 my $cmd = 'dmake';
123 $cmd .= " '" . $_ . "'";
125 $cmd .= ' 2>&1 |';
140 open(OUTPUT, $cmd) or die("$counter: $!");
/aoo4110/main/xmerge/source/palmtests/qa-wrapper/bin/
H A Dqa_comparator.pl88 $cmd = "java -classpath $classpath_val XmlWrapper $xml_orig/$_[0] $xml_new/$_[0]";
89 print "Executing: $cmd\n";
90 $val = system($cmd)/256;
110 $cmd = "java -classpath $classpath_val SimplePdbCompare $pdb_orig/$_[0] $pdb_new/$_[0]\n";
111 print "Executing: $cmd\n";
112 $val = system($cmd)/256;
/aoo4110/main/xmerge/source/palmtests/qa/comparator/
H A Dcomparator.pl88 $cmd = "java -classpath $classpath_val XmlWrapper $xml_orig/$_[0].sxw $xml_new/$_[0].sxw";
89 $val = system($cmd)/256;
105 $cmd = "java -classpath $classpath_val SimplePdbCompare $pdb_orig/$_[0].pdb $pdb_new/$_[0].pdb\n";
106 print "Executing: $cmd\n";
107 $val = system($cmd)/256;
/aoo4110/main/odk/source/unoapploader/unx/
H A Dunoapploader.c110 char * cmd = malloc( in main() local
118 if (cmd == NULL) { in main()
123 q = cmd; in main()
132 f = popen(cmd, "r"); in main()
133 free(cmd); in main()
/aoo4110/main/openssl/
H A Dmakefile.mk129 BUILD_ACTION=cmd /c "ms\mingw32"
158 …BUILD_ACTION=cmd /c "ms$(EMQ)\do_ms.bat $(subst,/,\ $(normpath,1 $(PERL)))" && nmake -f ms/ntdll.m…
160 …BUILD_ACTION=cmd /c "ms$(EMQ)\do_nasm.bat $(subst,/,\ $(normpath,1 $(PERL)))" && nmake -f ms/ntdll…
165 …BUILD_ACTION=cmd /c "ms$(EMQ)\do_win64a.bat $(subst,/,\ $(normpath,1 $(PERL)))" && cmd /c "nmake -…
/aoo4110/main/libxslt/
H A Dlibxslt-mingw.patch8 - # awkward: cmd appends spaces to result
10 - func_to_host_path_tmp1=`( cmd //c echo "$1" |\
25 - # Awkward: cmd appends spaces to result.
27 - func_to_host_pathlist_tmp2=`( cmd //c echo "$func_to_host_pathlist_tmp1" |\
/aoo4110/main/nss/
H A Dnss.patch56 diff -ur misc/nss-3.25/nss/cmd/platlibs.mk misc/build/nss-3.25/nss/cmd/platlibs.mk
57 --- misc/nss-3.25/nss/cmd/platlibs.mk 2016-06-20 10:11:28.000000000 -0700
58 +++ misc/build/nss-3.25/nss/cmd/platlibs.mk 2016-07-14 23:47:54.549839000 -0700
82 diff -ur misc/nss-3.25/nss/cmd/shlibsign/Makefile misc/build/nss-3.25/nss/cmd/shlibsign/Makefile
83 --- misc/nss-3.25/nss/cmd/shlibsign/Makefile 2016-06-20 10:11:28.000000000 -0700
84 +++ misc/build/nss-3.25/nss/cmd/shlibsign/Makefile 2016-07-14 23:47:54.554784000 -0700
H A Dnss.patch.mingw114 --- misc/nss-3.13.6/mozilla/security/nss/cmd/crmftest/Makefile 2005-11-14 09:17:21.000000000 +0900
115 +++ misc/build/nss-3.13.6/mozilla/security/nss/cmd/crmftest/Makefile 2010-06-17 08:42:08.370000000 …
125 --- misc/nss-3.13.6/mozilla/security/nss/cmd/shlibsign/Makefile 2009-08-08 04:06:37.000000000 +0900
126 +++ misc/build/nss-3.13.6/mozilla/security/nss/cmd/shlibsign/Makefile 2010-06-17 08:42:10.000000000…
/aoo4110/main/
H A Dset_soenv.in963 $outfile_bat =~ s/set$/cmd/i;
2606 my $cmd = shift;
2610 -x "$elem/$cmd" && return $elem;
2662 my $cmd = shift @pairs;
2665 if (! -x "$path/$cmd") {
2666 AddWarning ("Missing executable $path/$cmd\n");
2675 if (-f "$elem/$cmd" && ! -l "$elem/$cmd") {
2681 # print "No file $elem/$cmd\n";
2692 my $cmd = shift @pairs;
2695 $realpath = PathLookup ($cmd, @sysPath);
[all …]
/aoo4110/main/svx/source/dialog/
H A Dsendreportunx.cxx252 rtl::OStringBuffer cmd; in SendReport() local
253 tools::appendUnixShellWord(&cmd, path2); in SendReport()
254 cmd.append(RTL_CONSTASCII_STRINGPARAM(" -debug -load -send -noui")); in SendReport()
255 ret = system(cmd.getStr()); in SendReport()
/aoo4110/main/saxon/
H A Dsaxon-9.0.0.7-bj.patch161 + <property name="source-cmd-n.dir" value="${subversion-n.dir}/cmd"/>
301 + <copy todir="${temp-src-nc.dir}/cmd">
305 + <fileset dir="${source-cmd-n.dir}/Query">
342 + <copy todir="${temp-src-nc.dir}/cmd" >
343 + <fileset dir="${source-cmd-n.dir}">
618 + <exec dir="." executable="ikvmc.cmd" >
632 + <exec dir="." executable="csharp-compile.cmd" >
647 + srcdir="${temp-src-nc.dir}/cmd"
941 + <include name="cmd/**/*.cs"/>
959 + <include name="ikvmc.cmd"/>
[all …]
/aoo4110/main/qadevOOo/tests/java/ifc/system/
H A D_XSystemShellExecute.java62 String cmd = jh+fs+"bin"+fs+"java"; in _execute() local
64 log.println("Executing : '"+cmd+" " + cArgs + "'"); in _execute()
66 oObj.execute(cmd, cArgs, 1); in _execute()
/aoo4110/main/rhino/
H A Drhino1_7R3.patch263 + } else if (cmd.equals("Run")) {
267 + } else if (cmd.equals("Save")) {
271 } else if (cmd.equals("More Windows...")) {
570 String cmd = e.getActionCommand();
571 if (cmd.equals("Cut")) {
574 } else if (cmd.equals("Copy")) {
576 } else if (cmd.equals("Paste")) {
/aoo4110/main/desktop/scripts/
H A Dsbase.sh23 cmd=`dirname "$0"`/soffice
24 exec "$cmd" -base "$@"
H A Dscalc.sh23 cmd=`dirname "$0"`/soffice
24 exec "$cmd" -calc "$@"
H A Dsdraw.sh23 cmd=`dirname "$0"`/soffice
24 exec "$cmd" -draw "$@"
H A Dsimpress.sh23 cmd=`dirname "$0"`/soffice
24 exec "$cmd" -impress "$@"

Completed in 169 milliseconds

123