/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
H A D | check-for-global-initializers | 96 my $shortName = $file; 97 $shortName =~ s/.*\///; 102 next if $shortName eq "AllInOneFile.o"; 103 next if $shortName eq "Opcode.o"; 104 next if $shortName eq "Structure.o"; 105 next if $shortName eq "nodes.o"; 108 next if $shortName eq "BidiRun.o"; 109 next if $shortName eq "CachedPage.o"; 110 next if $shortName eq "CachedResource.o"; 111 next if $shortName e [all...] |
H A D | check-for-exit-time-destructors | 82 my $shortName = $file; 83 $shortName =~ s/.*\///; 88 $sawAtExit = 1 if (/___cxa_atexit/ && ($shortName ne "Heap.o")); 96 $sawError = 1 if printFunctions($shortName, $file); 130 my ($shortName, $path) = @_; 146 print "ERROR: $shortName has exit time destructors in it! ($path)\n";
|
H A D | check-for-weak-vtables-and-externals | 83 my $shortName = $executablePath; 84 $shortName =~ s/.*\///; 87 print "ERROR: $shortName has a weak vtable in it ($executablePath)\n"; 96 print "ERROR: $shortName has a weak external symbol in it ($executablePath)\n";
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
H A D | uoptions.h | 56 char shortName; /* 'f' for -f */ member in struct:UOption 62 #define UOPTION_DEF(longName, shortName, hasArg) \ 63 { longName, NULL, NULL, NULL, shortName, hasArg, 0 }
|
H A D | uoptions.c | 73 if(c==options[j].shortName) {
|
/external/icu4c/tools/toolutil/ |
H A D | uoptions.h | 56 char shortName; /* 'f' for -f */ member in struct:UOption 62 #define UOPTION_DEF(longName, shortName, hasArg) \ 63 { longName, NULL, NULL, NULL, shortName, hasArg, 0 }
|
H A D | uoptions.c | 73 if(c==options[j].shortName) {
|
/external/skia/tools/flags/ |
H A D | SkCommandLineFlags.h | 185 // bool 2 allows specifying a short name. No check is done to ensure that shortName 187 #define DEFINE_bool2(name, shortName, defaultValue, helpString) \ 190 TO_STRING(shortName),\ 205 // string2 allows specifying a short name. There is an assert that shortName 207 #define DEFINE_string2(name, shortName, defaultValue, helpString) \ 210 TO_STRING(shortName), \ 252 * @param shortName Short version (one character) of the name of the flag. This name can 253 * be referenced on the command line as "-shortName" to set the value of this flag. 259 static bool CreateBoolFlag(const char* name, const char* shortName, bool* pBool, argument 261 SkFlagInfo* info = SkNEW_ARGS(SkFlagInfo, (name, shortName, kBool_FlagTyp 360 const SkString& shortName() const { return fShortName; } function in class:SkFlagInfo 401 SkFlagInfo(const char* name, const char* shortName, FlagTypes type, const char* helpString) argument [all...] |
H A D | SkCommandLineFlags.cpp | 11 bool SkFlagInfo::CreateStringFlag(const char* name, const char* shortName, argument 14 SkFlagInfo* info = SkNEW_ARGS(SkFlagInfo, (name, shortName, kString_FlagType, helpString)); 144 const SkString& shortName = flag->shortName(); local 145 if (shortName.size() > 0) { 146 SkDebugf(" or -%s", shortName.c_str()); 226 flag->shortName().equals(helpFlags[k])) {
|
/external/oprofile/libpopt/ |
H A D | popthelp.c | 37 if (key->shortName == '?') 98 for (opt = table; opt->longName || opt->shortName || opt->arg; opt++) { 244 if (opt->longName && opt->shortName) 245 sprintf(left, "-%c, %s%s", opt->shortName, 248 else if (opt->shortName != '\0') 249 sprintf(left, "-%c", opt->shortName); 419 while (opt->longName || opt->shortName || opt->arg) { 426 if (opt->shortName != '\0') len += sizeof("-X")-1; 427 if (opt->shortName != '\0' && opt->longName) len += sizeof(", ")-1; 486 if ((opt->longName || opt->shortName) [all...] |
H A D | popt.c | 69 for (; opt->longName || opt->shortName || opt->arg; opt++) { 97 for (; opt->longName || opt->shortName || opt->arg; opt++) { 130 for (; opt->longName || opt->shortName || opt->arg; opt++) { 145 ((myOpt->shortName && opt->shortName && shorty && 146 myOpt->shortName == opt->shortName) || 262 /* Only one of longName, shortName should be set, not both. */ 265 /*@null@*/ const char * longName, char shortName) 281 else if (shortName ! 264 handleExec( poptContext con, const char * longName, char shortName) argument 324 handleAlias( poptContext con, const char * longName, char shortName, const char * nextCharArg) argument 472 findOption(const struct poptOption * opt, const char * longName, char shortName, poptCallbackType * callback, const void ** callbackData, int singleDash) argument [all...] |
H A D | popt.h | 117 char shortName; /*!< may be NUL */ member in struct:poptOption 134 char shortName; /*!< may be NUL */ member in struct:poptAlias
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
H A D | TestResultsGenerator.java | 842 String shortName = 850 .append(shortName) 852 .append(shortName) 859 .append(shortName) 869 .append(shortName) 891 String shortName = 899 .append(shortName) 901 .append(shortName) 908 .append(shortName) 918 .append(shortName) [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/search_engines/ |
H A D | TemplateUrlService.java | 41 public static TemplateUrl create(int id, String shortName, String keyword) { argument 42 return new TemplateUrl(id, shortName, keyword); 45 public TemplateUrl(int index, String shortName, String keyword) { argument 47 mShortName = shortName;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
H A D | ScenarioResults.java | 37 String shortName; field in class:ScenarioResults 39 public ScenarioResults(int id, String name, String shortName) { argument 42 this.label = shortName; 155 if (this.shortName == null) { 162 return this.shortName = this.name; 167 return this.shortName = this.name; 198 this.shortName = buffer.toString(); 200 return this.shortName;
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/resources/ |
H A D | sunspider-analyze-results.js | 197 var shortName = tests[i].replace(/^[^-]*-/, ""); 198 if (shortName.length + 4 > width) 199 width = shortName.length + 4; 256 var shortName = test.replace(/^[^-]*-/, ""); 257 print(resultLine(labelWidth, 4, shortName, meanWidth, testMeansByCategory[category][test], testStdErrsByCategory[category][test]));
|
H A D | sunspider-compare-results.js | 261 var shortName = tests[i].replace(/^[^-]*-/, ""); 262 if (shortName.length + 4 > width) 263 width = shortName.length + 4; 354 var shortName = test.replace(/^[^-]*-/, ""); 355 print(resultLine(labelWidth, 4, shortName,
|
/external/chromium_org/third_party/icu/source/tools/pkgdata/ |
H A D | pkgtypes.h | 111 const char *shortName; /* name of what we're building */ member in struct:UPKGOptions_ 124 const char *libName; /* name for library (default: shortName) */
|
/external/skia/dm/ |
H A D | DMCpuTask.cpp | 21 , fName(UnderJoin(fGM->shortName(), name))
|
H A D | DMGpuTask.cpp | 22 , fName(UnderJoin(fGM->shortName(), name))
|
/external/skia/gm/ |
H A D | gm.cpp | 42 const char* GM::shortName() { function in class:GM
|
H A D | gmmain.cpp | 205 * Assemble shortNamePlusConfig from (surprise!) shortName and configName. 208 * For example, shortName "selftest1" and configName "8888" could be assembled into 211 SkString make_shortname_plus_config(const char *shortName, const char *configName) { argument 214 name.append(shortName); 216 name.appendf("%s%c%s", configName, SkPATH_SEPARATOR, shortName); 218 name.appendf("%s_%s", shortName, configName); 227 const char *shortName, 231 SkString filename = make_shortname_plus_config(shortName, configName); 242 const char *shortName, 250 filename.append(shortName); 226 make_filename(const char *path, const char *shortName, const char *configName, const char *renderModeDescriptor, const char *suffix) argument 241 make_bitmap_filename(const char *path, const char *shortName, const char *configName, const char *renderModeDescriptor, const GmResultDigest &bitmapDigest) argument 777 compare_to_expectations(Expectations expectations, const BitmapAndDigest& actualBitmapAndDigest, const char *shortName, const char *configName, const char *renderModeDescriptor, bool addToJsonSummary) argument 965 compare_test_results_to_reference_bitmap( const char *shortName, const char *configName, const char *renderModeDescriptor, SkBitmap& actualBitmap, const SkBitmap* referenceBitmap) argument 2291 const char* shortName = gm->shortName(); local [all...] |
H A D | gm.h | 59 const char* shortName();
|
/external/oprofile/ |
H A D | popt.h | 117 char shortName; /*!< may be NUL */ member in struct:poptOption 134 char shortName; /*!< may be NUL */ member in struct:poptAlias
|
/external/icu4c/tools/pkgdata/ |
H A D | pkgtypes.h | 111 const char *shortName; /* name of what we're building */ member in struct:UPKGOptions_ 124 const char *libName; /* name for library (default: shortName) */
|