/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
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 eq "FEGaussianBlur.o" [all...] |
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";
|
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";
|
check-for-inappropriate-objc-class-names | 83 my $shortName = $executablePath; 84 $shortName =~ s/.*\///; 86 print "ERROR: $shortName defines one or more Objective-C classes with inappropriate names. ($executablePath)\n";
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
uoptions.h | 56 char shortName; /* 'f' for -f */ 62 #define UOPTION_DEF(longName, shortName, hasArg) \ 63 { longName, NULL, NULL, NULL, shortName, hasArg, 0 }
|
uoptions.c | 73 if(c==options[j].shortName) {
|
/external/icu4c/tools/toolutil/ |
uoptions.h | 56 char shortName; /* 'f' for -f */ 62 #define UOPTION_DEF(longName, shortName, hasArg) \ 63 { longName, NULL, NULL, NULL, shortName, hasArg, 0 }
|
uoptions.c | 73 if(c==options[j].shortName) {
|
/external/skia/tools/flags/ |
SkCommandLineFlags.h | 172 // bool 2 allows specifying a short name. No check is done to ensure that shortName 174 #define DEFINE_bool2(name, shortName, defaultValue, helpString) \ 177 TO_STRING(shortName),\ 192 // string2 allows specifying a short name. There is an assert that shortName 194 #define DEFINE_string2(name, shortName, defaultValue, helpString) \ 197 TO_STRING(shortName), \ 239 * @param shortName Short version (one character) of the name of the flag. This name can 240 * be referenced on the command line as "-shortName" to set the value of this flag. 246 static bool CreateBoolFlag(const char* name, const char* shortName, bool* pBool, 248 SkFlagInfo* info = SkNEW_ARGS(SkFlagInfo, (name, shortName, kBool_FlagType, helpString)) [all...] |
SkCommandLineFlags.cpp | 11 bool SkFlagInfo::CreateStringFlag(const char* name, const char* shortName, 14 SkFlagInfo* info = SkNEW_ARGS(SkFlagInfo, (name, shortName, kString_FlagType, helpString)); 144 const SkString& shortName = flag->shortName(); 145 if (shortName.size() > 0) { 146 SkDebugf(" or -%s", shortName.c_str()); 226 flag->shortName().equals(helpFlags[k])) {
|
/external/oprofile/libpopt/ |
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...] |
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 != item->option.shortName [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/search_engines/ |
TemplateUrlService.java | 38 public static TemplateUrl create(int id, String shortName, String keyword) { 39 return new TemplateUrl(id, shortName, keyword); 42 public TemplateUrl(int index, String shortName, String keyword) { 44 mShortName = shortName;
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewNode.java | 62 private String shortName; 122 filtered = pattern.matcher(shortName).find() || pattern.matcher(id).find(); 132 void setShortName(String shortName) { 133 this.shortName = shortName;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
ScenarioResults.java | 37 String shortName; 39 public ScenarioResults(int id, String name, String shortName) { 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;
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
Texture2D.java | 78 String shortName = mFileName.substring(mFileName.lastIndexOf('/') + 1); 79 setTexture(SceneManager.loadTexture2D(mFileDir + shortName, rs, res));
|
TextureCube.java | 79 String shortName = mFileName.substring(mFileName.lastIndexOf('/') + 1); 80 setTexture(SceneManager.loadCubemap(mFileDir + shortName, rs, res));
|
/external/skia/gm/ |
gmmain.cpp | 203 * Assemble shortNamePlusConfig from (surprise!) shortName and configName. 206 * For example, shortName "selftest1" and configName "8888" could be assembled into 209 SkString make_shortname_plus_config(const char *shortName, const char *configName) { 212 name.append(shortName); 214 name.appendf("%s%c%s", configName, SkPATH_SEPARATOR, shortName); 216 name.appendf("%s_%s", shortName, configName); 225 const char *shortName, 229 SkString filename = make_shortname_plus_config(shortName, configName); 240 const char *shortName, 248 filename.append(shortName); [all...] |
gm.cpp | 41 const char* GM::shortName() {
|
gm.h | 51 const char* shortName();
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
PlanCreator.java | 46 @Option (name = "plan", shortName = 'p', description = "the name of the plan to create", 50 @Option (name = "session", shortName = 's', description = "the session id to derive from", 54 @Option (name = "result", shortName = 'r',
|
/external/chromium_org/third_party/icu/source/tools/pkgdata/ |
pkgtypes.h | 111 const char *shortName; /* name of what we're building */ 124 const char *libName; /* name for library (default: shortName) */
|
/frameworks/base/services/java/com/android/server/am/ |
AppBindRecord.java | 61 + " " + service.shortName + ":" + client.processName + "}";
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/resources/ |
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]));
|