Home
last modified time | relevance | path

Searched refs:arg (Results 1 – 25 of 230) sorted by relevance

12345678910

/trunk/main/solenv/bin/
H A Dzipdep.pl219 my $arg = shift;
220 $arg =~ s/\\/\\\\/g;
221 $arg =~ s/\//\\\//g;
227 $arg =~ s/\?/\./g;
230 return $arg;
238 my $arg = '';
240 $arg =~ /^-/ and unshift(@ARGV, $arg) and return;
242 $zip_file = $arg;
245 $arg = &make_reg_exp($arg);
254 my ($arg);
[all …]
H A Dbuild.pl1122 my $arg = '';
1138 $dmake .= ' '.$arg;
1475 while ($arg = shift @ARGV) {
1493 if ($arg =~ /^--with_branches$/ || $arg =~ /^-b$/) {
1503 if ($arg =~ /^--from$/ || $arg =~ /^-f$/) {
1537 ($arg =~ /^--clear$/ || $arg =~ /^--removeall$/) and $clear_config = 1 and next;
1552 if ($arg =~ /^--$/) {
1625 foreach $arg (@dmake_args) {
1647 my $arg;
1649 while ($arg = shift @ARGV) {
[all …]
H A Ddeliver.pl401 my $arg;
405 while ( $arg = shift @ARGV ) {
406 $arg =~ /^-force$/ and $opt_force = 1 and next;
408 $arg =~ /^-quiet$/ and $opt_silent = 1 and next;
409 $arg =~ /^-verbose$/ and $opt_verbose = 1 and next;
410 $arg =~ /^-zip$/ and $opt_zip = 1 and next;
411 $arg =~ /^-delete$/ and $opt_delete = 1 and next;
413 $arg =~ /^-help$/ and $opt_help = 1 and $arg = '';
418 print_error("invalid option $arg") if ( $arg =~ /^-/ );
419 if ( $arg =~ /^-/ || $opt_help || $#ARGV > -1 ) {
[all …]
H A Dmapgen.pl174 my ($arg);
176 while ($arg = shift @ARGV) {
177 $arg =~ /^-d$/ and $dump_file = shift @ARGV and next;
178 $arg =~ /^-f$/ and $flt_file = shift @ARGV and next;
179 $arg =~ /^-m$/ and $map_file = shift @ARGV and next;
180 $arg =~ /^-h$/ and &usage and exit(0);
181 $arg =~ /^--help$/ and &usage and exit(0);
182 $arg =~ /^-s$/ and $first_string = shift @ARGV and next;
/trunk/main/xmerge/source/palmtests/qa/bin/
H A Dtest_driver.pl576 $pose_exe=$arg[1];
580 $pose_prc=$arg[1];
585 $pdb_orig=$arg[1];
592 $pdb_new=$arg[1];
598 $xml_orig=$arg[1];
603 $xml_new=$arg[1];
617 $infile = $arg[1];
661 my $len = @arg;
668 $pose_exe=$arg[1];
684 $pdb_new=$arg[1];
[all …]
/trunk/main/xmerge/source/palmtests/qa-wrapper/bin/
H A Dqa_test_driver.pl652 $pose_exe=$arg[1];
656 $pose_prc=$arg[1];
661 $pdb_orig=$arg[1];
666 $pdb_new=$arg[1];
670 $xml_orig=$arg[1];
675 $xml_new=$arg[1];
687 $infile = $arg[1];
728 my $len = @arg;
735 $pose_exe=$arg[1];
749 $pdb_new=$arg[1];
[all …]
H A Dqa_comparator.pl144 $pdb_orig=$arg[1];
148 $pdb_new=$arg[1];
152 $xml_orig=$arg[1];
156 $xml_new=$arg[1];
168 $infile = $arg[1];
177 $logfile = $arg[1];
196 $len = @arg;
204 $pdb_orig=$arg[1];
208 $pdb_new=$arg[1];
212 $xml_orig=$arg[1];
[all …]
/trunk/main/xmerge/source/palmtests/qa/comparator/
H A Dcomparator.pl136 $pdb_orig=$arg[1];
140 $pdb_new=$arg[1];
144 $xml_orig=$arg[1];
148 $xml_new=$arg[1];
160 $infile = $arg[1];
169 $logfile = $arg[1];
188 $len = @arg;
196 $pdb_orig=$arg[1];
200 $pdb_new=$arg[1];
204 $xml_orig=$arg[1];
[all …]
/trunk/main/unodevtools/source/skeletonmaker/
H A Dskeletonmaker.cxx157 OUString arg, sOption; variable
161 rtl_getAppCommandArg(nPos++, &arg.pData);
175 } else if ( readOption( &bOption, "h", &nPos, arg) ||
196 rtl_getAppCommandArg(nPos, &arg.pData);
198 if ( readOption( &bOption, "a", &nPos, arg) ||
218 if ( readOption( &bOption, "sn", &nPos, arg) ||
223 if ( readOption( &bOption, "lh", &nPos, arg) ||
228 if ( readOption( &bOption, "bc", &nPos, arg) ||
237 if ( readOption( &sOption, "d", &nPos, arg) ) {
241 if ( readOption( &sOption, "n", &nPos, arg) ) {
[all …]
/trunk/main/testtools/source/bridgetest/cli/
H A Dcli_cs_multi.cs40 return 11 * arg; in fn11()
45 return "12" + arg; in fn12()
50 return 21 * arg; in fn21()
55 return "22" + arg; in fn22()
66 return 31 * arg; in fn31()
71 return "32" + arg; in fn32()
81 return 41 * arg; in fn41()
86 return 61 * arg; in fn61()
91 return "62" + arg; in fn62()
96 return 71 * arg; in fn71()
[all …]
/trunk/main/testtools/source/bridgetest/
H A Dmulti.hxx51 virtual sal_Int32 SAL_CALL fn11(sal_Int32 arg) in fn11() argument
53 { return 11 * arg; } in fn11()
59 virtual sal_Int32 SAL_CALL fn21(sal_Int32 arg) in fn21() argument
61 { return 21 * arg; } in fn21()
75 virtual sal_Int32 SAL_CALL fn31(sal_Int32 arg) in fn31() argument
77 { return 31 * arg; } in fn31()
87 virtual sal_Int32 SAL_CALL fn41(sal_Int32 arg) in fn41() argument
89 { return 41 * arg; } in fn41()
91 virtual sal_Int32 SAL_CALL fn61(sal_Int32 arg) in fn61() argument
93 { return 61 * arg; } in fn61()
[all …]
/trunk/test/testcommon/source/org/openoffice/test/common/
H A DNamedRequest.java48 int ci = arg.indexOf(":"); in init()
50 name = arg.substring(0, ci); in init()
51 arg = arg.substring(++ci); in init()
53 name = arg; in init()
59 return arg; in init()
69 arg = namedRequest.init(arg); in tc()
74 String[] klasses = arg.split(","); in tc()
91 arg = namedRequest.init(arg); in tp()
96 String[] packages = arg.split(","); in tp()
118 arg = namedRequest.init(arg); in tm()
[all …]
/trunk/main/bridges/source/jni_uno/
H A Djni_data.cxx1257 jvalue arg; in map_to_java() local
1298 jvalue arg; in map_to_java() local
1337 jvalue arg; in map_to_java() local
1377 jvalue arg; in map_to_java() local
1417 jvalue arg; in map_to_java() local
1457 jvalue arg; in map_to_java() local
1496 jvalue arg; in map_to_java() local
1537 jvalue arg; in map_to_java() local
1883 jvalue arg; in map_to_java() local
1926 jvalue arg; in map_to_java() local
[all …]
/trunk/main/bridges/test/com/sun/star/lib/uno/bridges/java_remote/
H A DPolyStructTest.idl34 TestPolyStruct<boolean> transportBoolean([in] TestPolyStruct<boolean> arg);
35 TestPolyStruct<byte> transportByte([in] TestPolyStruct<byte> arg);
36 TestPolyStruct<short> transportShort([in] TestPolyStruct<short> arg);
37 TestPolyStruct<long> transportLong([in] TestPolyStruct<long> arg);
38 TestPolyStruct<hyper> transportHyper([in] TestPolyStruct<hyper> arg);
39 TestPolyStruct<float> transportFloat([in] TestPolyStruct<float> arg);
40 TestPolyStruct<double> transportDouble([in] TestPolyStruct<double> arg);
41 TestPolyStruct<char> transportChar([in] TestPolyStruct<char> arg);
42 TestPolyStruct<string> transportString([in] TestPolyStruct<string> arg);
43 TestPolyStruct<type> transportType([in] TestPolyStruct<type> arg);
[all …]
/trunk/main/wizards/com/sun/star/wizards/web/
H A DAbstractErrorHandler.java56 public boolean error(Exception ex, Object arg, int ix, int errorType) in error() argument
62 return !showMessage(getMessageFor(ex, arg, ix, errorType), errorType); in error()
64 return !showMessage(getMessageFor(ex, arg, ix, errorType), errorType); in error()
66 return showMessage(getMessageFor(ex, arg, ix, errorType), errorType); in error()
68 return showMessage(getMessageFor(ex, arg, ix, errorType), errorType); in error()
70 return showMessage(getMessageFor(ex, arg, ix, errorType), errorType); in error()
72 return showMessage(getMessageFor(ex, arg, ix, errorType), errorType); in error()
74 return showMessage(getMessageFor(ex, arg, ix, errorType), errorType); in error()
76 return showMessage(getMessageFor(ex, arg, ix, errorType), errorType); in error()
78 return showMessage(getMessageFor(ex, arg, ix, errorType), errorType); in error()
[all …]
/trunk/main/jvmaccess/source/
H A Dclasspath.cxx96 jvalue arg; in doTranslateToUrls() local
97 arg.l = env->NewString( in doTranslateToUrls()
100 if (arg.l == 0) { in doTranslateToUrls()
103 jobject o(env->NewObjectA(classUrl, ctorUrl, &arg)); in doTranslateToUrls()
145 jvalue arg; in doLoadClass() local
146 arg.l = translateToUrls(context, env, classPath); in doLoadClass()
147 if (arg.l == 0) { in doLoadClass()
150 jobject cl = env->NewObjectA(classLoader, ctorLoader, &arg); in doLoadClass()
160 arg.l = env->NewString( in doLoadClass()
163 if (arg.l == 0) { in doLoadClass()
[all …]
/trunk/main/testtools/source/bridgetest/idl/
H A Dbridgetest.idl149 long fn11([in] long arg); // return 11 * arg
150 string fn12([in] string arg); // return "12" + arg
154 long fn21([in] long arg); // return 21 * arg
155 string fn22([in] string arg); // return "22" + arg
160 long fn31([in] long arg); // return 31 * arg
161 string fn32([in] string arg); // return "32" + arg
168 long fn41([in] long arg); // return 41 * arg
181 long fn61([in] long arg); // return 61 * arg
182 string fn62([in] string arg); // return "62" + arg
186 long fn71([in] long arg); // return 71 * arg
[all …]
/trunk/main/testtools/com/sun/star/comp/bridge/
H A DTestComponent.java650 return arg; in transportPolyBoolean()
768 return 11 * arg; in getMulti()
772 return "12" + arg; in getMulti()
776 return 21 * arg; in getMulti()
780 return "22" + arg; in getMulti()
792 return 31 * arg; in getMulti()
796 return "32" + arg; in getMulti()
804 return 41 * arg; in getMulti()
808 return 61 * arg; in getMulti()
812 return "62" + arg; in getMulti()
[all …]
/trunk/main/l10ntools/source/filter/utils/
H A DConfigHelper.java99 for (int arg=0; arg<count; ++arg) in ConfigHelper()
103 int len = lCommandLineArgs[arg].length(); in ConfigHelper()
104 int pos = lCommandLineArgs[arg].indexOf('='); in ConfigHelper()
107 java.lang.String sArg = lCommandLineArgs[arg].substring(0,pos); in ConfigHelper()
108 java.lang.String sValue = lCommandLineArgs[arg].substring(pos+1); in ConfigHelper()
116 pos = lCommandLineArgs[arg].lastIndexOf('-'); in ConfigHelper()
118 pos = lCommandLineArgs[arg].lastIndexOf('/'); in ConfigHelper()
121 java.lang.String sArg = lCommandLineArgs[arg].substring(pos+1); in ConfigHelper()
127 …xception("Invalid command line detected. The argument \""+lCommandLineArgs[arg]+"\" use an unsuppo… in ConfigHelper()
/trunk/test/testcommon/source/org/openoffice/test/
H A DRun.java67 String arg = args[i]; in main() local
68 if ("-help".equals(arg)) { in main()
70 } else if (arg.startsWith("-D")) { in main()
71 String propEntry = arg.substring(2); in main()
80 } else if (arg.equals("-propertyfile")) { in main()
85 } else if (arg.equals("-r")) { in main()
89 } else if (arg.equals("-l")) { in main()
93 } else if (arg.equals("-tc")) { in main()
97 } else if (arg.equals("-tp")) { in main()
101 } else if (arg.equals("-tm")) { in main()
/trunk/main/offapi/com/sun/star/inspection/
H A DObjectInspectorModel.idl90 if <arg>handlerFactories</arg> is empty.
93 if <arg>minHelpTextLines</arg> or <arg>maxHelpTextLines</arg> are negative,
94 or if <arg>minHelpTextLines</arg> is greater than <arg>maxHelpTextLines</arg>.
/trunk/main/registry/tools/
H A Doptions.cxx44 bool Options::checkArgument(std::vector< std::string> & rArgs, char const * arg, size_t len) in checkArgument() argument
46 bool result = ((arg != 0) && (len > 0)); in checkArgument()
50 OSL_TRACE("registry::tools:Options::checkArgument(): \"%s\"", arg); in checkArgument()
51 switch (arg[0]) in checkArgument()
57 result = Options::checkCommandFile(rArgs, &(arg[1])); in checkArgument()
64 std::string option (&(arg[0]), 2); in checkArgument()
69 std::string param(&(arg[2]), len - 2); in checkArgument()
75 rArgs.push_back(std::string(arg, len)); in checkArgument()
/trunk/main/odk/examples/DevelopersGuide/UCB/
H A DResourceManager.java115 GlobalTransferCommandArgument arg = new GlobalTransferCommandArgument(); in transferResource() local
117 arg.Operation = TransferCommandOperation.COPY; in transferResource()
119 arg.Operation = TransferCommandOperation.MOVE; in transferResource()
121 arg.Operation = TransferCommandOperation.LINK; in transferResource()
123 arg.SourceURL = sourceURL; in transferResource()
124 arg.TargetURL = targetFolderURL; in transferResource()
127 arg.NewTitle = newTitle; in transferResource()
130 arg.NameClash = NameClash.ERROR; in transferResource()
133 m_helper.executeCommand( m_ucb, "globalTransfer", arg ); in transferResource()
/trunk/main/cpputools/source/unoexe/
H A Dunoexe.cxx635 OUString arg; variable
637 rtl_getAppCommandArg(nPos, &arg.pData);
640 if (dashdash == arg)
646 if (readOption( &aImplName, "c", &nPos, arg) ||
647 readOption( &aLocation, "l", &nPos, arg) ||
648 readOption( &aServiceName, "s", &nPos, arg) ||
649 readOption( &aUnoUrl, "u", &nPos, arg) ||
657 if (readOption( &aRegistry, "ro", &nPos, arg))
663 if (readOption( &aReadWriteRegistry, "rw", &nPos, arg))
668 if (readOption( &aRegistry, "r", &nPos, arg))
[all …]
/trunk/main/migrationanalysis/src/driver_docs/
H A Dulf2dat.pl123 my ($arg,$lang);
125 while ($arg = shift @ARGV) {
126 $arg =~ /^-i$/ and $in_name = shift @ARGV and next;
127 $arg =~ /^-help$/ and $help = 1 and next; #show help
129 $arg =~ /.*[\/\\]([^\/\\]*)\.dat$/;
132 print "got $lang = $arg\n";
133 $files{ $lang } = $arg;

Completed in 127 milliseconds

12345678910