| /AOO41X/main/solenv/bin/ |
| H A D | zipdep.pl | 219 my $arg = shift; 220 $arg =~ s/\\/\\\\/g; 221 $arg =~ s/\//\\\//g; 222 $arg =~ s/\./\\\./g; 223 $arg =~ s/\+/\\\+/g; 224 $arg =~ s/\{/\\\{/g; 225 $arg =~ s/\}/\\\}/g; 226 $arg =~ s/\*/\.\*/g; 227 $arg =~ s/\?/\./g; 230 return $arg; [all …]
|
| H A D | build.pl | 1122 my $arg = ''; 1137 while ($arg = pop(@dmake_args)) { 1138 $dmake .= ' '.$arg; 1474 my ($arg, $dont_grab_output); 1475 while ($arg = shift @ARGV) { 1476 $arg =~ /^-P$/ and $processes_to_run = shift @ARGV and next; 1477 $arg =~ /^-P(\d+)$/ and $processes_to_run = $1 and next; 1478 $arg =~ /^--all$/ and $build_all_parents = 1 and next; 1479 $arg =~ /^-a$/ and $build_all_parents = 1 and next; 1480 $arg =~ /^--show$/ and $show = 1 and next; [all …]
|
| H A D | deliver.pl | 401 my $arg; 405 while ( $arg = shift @ARGV ) { 406 $arg =~ /^-force$/ and $opt_force = 1 and next; 407 $arg =~ /^-check$/ and $opt_check = 1 and $opt_verbose = 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; 412 $arg =~ /^-dontdeletecommon$/ and $dontdeletecommon = 1 and next; 413 $arg =~ /^-help$/ and $opt_help = 1 and $arg = ''; [all …]
|
| H A D | mapgen.pl | 174 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;
|
| /AOO41X/main/xmerge/source/palmtests/qa-wrapper/bin/ |
| H A D | qa_test_driver.pl | 647 my @arg= split('=', $i); 648 @arg[0] =~ tr/A-Z/a-z/; 650 if (@arg[0] eq "-pose-exe") 652 $pose_exe=$arg[1]; 654 elsif (@arg[0] eq "-pose-prc") 656 $pose_prc=$arg[1]; 658 elsif (@arg[0] eq "-pdb-orig") 660 $pdb_orig_dir=$arg[1]; 661 $pdb_orig=$arg[1]; 663 elsif (@arg[0] eq "-pdb-new") [all …]
|
| H A D | qa_comparator.pl | 139 @arg= split('=', $i); 140 @arg[0] =~ tr/A-Z/a-z/; 142 if (@arg[0] eq "-pdb-orig") 144 $pdb_orig=$arg[1]; 146 elsif (@arg[0] eq "-pdb-new") 148 $pdb_new=$arg[1]; 150 elsif (@arg[0] eq "-xml-orig") 152 $xml_orig=$arg[1]; 154 elsif (@arg[0] eq "-xml-new") 156 $xml_new=$arg[1]; [all …]
|
| /AOO41X/main/xmerge/source/palmtests/qa/bin/ |
| H A D | test_driver.pl | 571 my @arg= split('=', $i); 572 @arg[0] =~ tr/A-Z/a-z/; 574 if (@arg[0] eq "-pose-exe") 576 $pose_exe=$arg[1]; 578 elsif (@arg[0] eq "-pose-prc") 580 $pose_prc=$arg[1]; 582 elsif (@arg[0] eq "-pdb-orig") 584 $pdb_orig_dir=$arg[1]; 585 $pdb_orig=$arg[1]; 589 elsif (@arg[0] eq "-pdb-new") [all …]
|
| /AOO41X/main/xmerge/source/palmtests/qa/comparator/ |
| H A D | comparator.pl | 131 @arg= split('=', $i); 132 @arg[0] =~ tr/A-Z/a-z/; 134 if (@arg[0] eq "-pdb-orig") 136 $pdb_orig=$arg[1]; 138 elsif (@arg[0] eq "-pdb-new") 140 $pdb_new=$arg[1]; 142 elsif (@arg[0] eq "-xml-orig") 144 $xml_orig=$arg[1]; 146 elsif (@arg[0] eq "-xml-new") 148 $xml_new=$arg[1]; [all …]
|
| /AOO41X/main/unodevtools/source/skeletonmaker/ |
| H A D | skeletonmaker.cxx | 157 OUString arg, sOption; variable 161 rtl_getAppCommandArg(nPos++, &arg.pData); 162 if ( arg.equals(OUString(RTL_CONSTASCII_USTRINGPARAM("dump"))) ) { 164 } else if ( arg.equals(OUString(RTL_CONSTASCII_USTRINGPARAM("component"))) ) { 167 } else if ( arg.equals(OUString(RTL_CONSTASCII_USTRINGPARAM("calc-add-in"))) ) { 171 } else if ( arg.equals(OUString(RTL_CONSTASCII_USTRINGPARAM("add-on"))) ) { 175 } else if ( readOption( &bOption, "h", &nPos, arg) || 176 readOption( &bOption, "help", &nPos, arg) ) { 179 } else if ( readOption( &bOption, "V", &nPos, arg) || 180 readOption( &bOption, "version", &nPos, arg) ) { [all …]
|
| /AOO41X/main/testtools/source/bridgetest/cli/ |
| H A D | cli_cs_multi.cs | 38 public int fn11(int arg) in fn11() argument 40 return 11 * arg; in fn11() 43 public string fn12(string arg) in fn12() argument 45 return "12" + arg; in fn12() 48 public int fn21(int arg) in fn21() argument 50 return 21 * arg; in fn21() 53 public string fn22(string arg) in fn22() argument 55 return "22" + arg; in fn22() 64 public int fn31(int arg) in fn31() argument 66 return 31 * arg; in fn31() [all …]
|
| /AOO41X/main/testtools/source/bridgetest/ |
| H A D | multi.hxx | 51 virtual sal_Int32 SAL_CALL fn11(sal_Int32 arg) in fn11() argument 53 { return 11 * arg; } in fn11() 55 virtual rtl::OUString SAL_CALL fn12(rtl::OUString const & arg) in fn12() argument 57 { return rtl::OUString::createFromAscii("12") + arg; } in fn12() 59 virtual sal_Int32 SAL_CALL fn21(sal_Int32 arg) in fn21() argument 61 { return 21 * arg; } in fn21() 63 virtual rtl::OUString SAL_CALL fn22(rtl::OUString const & arg) in fn22() argument 65 { return rtl::OUString::createFromAscii("22") + arg; } in fn22() 75 virtual sal_Int32 SAL_CALL fn31(sal_Int32 arg) in fn31() argument 77 { return 31 * arg; } in fn31() [all …]
|
| /AOO41X/test/testcommon/source/org/openoffice/test/common/ |
| H A D | NamedRequest.java | 46 private String init(String arg) throws InitializationError { in init() argument 48 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() 66 public static NamedRequest tc(String arg) { in tc() argument 69 arg = namedRequest.init(arg); in tc() 74 String[] klasses = arg.split(","); in tc() 88 public static NamedRequest tp(String arg) { in tp() argument [all …]
|
| /AOO41X/main/bridges/source/jni_uno/ |
| H A D | jni_data.cxx | 1256 jvalue arg; in map_to_java() local 1257 arg.c = *(jchar const *) uno_data; in map_to_java() 1260 m_jni_info->m_ctor_Character_with_char, &arg ); in map_to_java() 1297 jvalue arg; in map_to_java() local 1298 arg.z = *(jboolean const *) uno_data; in map_to_java() 1301 m_jni_info->m_ctor_Boolean_with_boolean, &arg ); in map_to_java() 1336 jvalue arg; in map_to_java() local 1337 arg.b = *(jbyte const *) uno_data; in map_to_java() 1340 m_jni_info->m_ctor_Byte_with_byte, &arg ); in map_to_java() 1376 jvalue arg; in map_to_java() local [all …]
|
| /AOO41X/main/bridges/test/com/sun/star/lib/uno/bridges/java_remote/ |
| H A D | PolyStructTest.idl | 34 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 …]
|
| /AOO41X/main/wizards/com/sun/star/wizards/web/ |
| H A D | AbstractErrorHandler.java | 56 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 …]
|
| /AOO41X/main/jvmaccess/source/ |
| H A D | classpath.cxx | 96 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 …]
|
| /AOO41X/main/testtools/source/bridgetest/idl/ |
| H A D | bridgetest.idl | 149 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 …]
|
| /AOO41X/main/l10ntools/source/filter/utils/ |
| H A D | ConfigHelper.java | 99 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()
|
| /AOO41X/main/testtools/com/sun/star/comp/bridge/ |
| H A D | TestComponent.java | 648 public TestPolyStruct transportPolyBoolean(TestPolyStruct arg) { in transportPolyBoolean() argument 649 Boolean dummy = (Boolean) arg.member; in transportPolyBoolean() 650 return arg; in transportPolyBoolean() 653 public void transportPolyHyper(TestPolyStruct[] arg) { in transportPolyHyper() argument 654 Long dummy = (Long) arg[0].member; in transportPolyHyper() 767 public int fn11(int arg) { in getMulti() argument 768 return 11 * arg; in getMulti() 771 public String fn12(String arg) { in getMulti() argument 772 return "12" + arg; in getMulti() 775 public int fn21(int arg) { in getMulti() argument [all …]
|
| /AOO41X/test/testcommon/source/org/openoffice/test/ |
| H A D | Run.java | 67 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()
|
| /AOO41X/main/registry/tools/ |
| H A D | options.cxx | 44 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()
|
| /AOO41X/main/offapi/com/sun/star/inspection/ |
| H A D | ObjectInspectorModel.idl | 90 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>.
|
| /AOO41X/main/odk/examples/DevelopersGuide/UCB/ |
| H A D | ResourceManager.java | 115 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()
|
| /AOO41X/main/cpputools/source/unoexe/ |
| H A D | unoexe.cxx | 635 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) || 650 readOption( &s_quiet, "quiet", &nPos, arg) || 651 readOption( &bSingleAccept, "singleaccept", &nPos, arg) || 652 readOption( &bSingleInstance, "singleinstance", &nPos, arg)) [all …]
|
| /AOO41X/main/migrationanalysis/src/driver_docs/ |
| H A D | ulf2dat.pl | 123 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;
|