Searched refs:shortName (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dcheck-for-global-initializers96 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 Dcheck-for-exit-time-destructors82 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 Dcheck-for-weak-vtables-and-externals83 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 Duoptions.h56 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 Duoptions.c73 if(c==options[j].shortName) {
/external/chromium_org/third_party/skia/tools/flags/
H A DSkCommandLineFlags.h189 // bool 2 allows specifying a short name. No check is done to ensure that shortName
191 #define DEFINE_bool2(name, shortName, defaultValue, helpString) \
194 TO_STRING(shortName),\
209 // string2 allows specifying a short name. There is an assert that shortName
211 #define DEFINE_string2(name, shortName, defaultValue, helpString) \
214 TO_STRING(shortName), \
256 * @param shortName Short version (one character) of the name of the flag. This name can
257 * be referenced on the command line as "-shortName" to set the value of this flag.
263 static bool CreateBoolFlag(const char* name, const char* shortName, bool* pBool, argument
265 SkFlagInfo* info = SkNEW_ARGS(SkFlagInfo, (name, shortName, kBool_FlagTyp
364 const SkString& shortName() const { return fShortName; } function in class:SkFlagInfo
405 SkFlagInfo(const char* name, const char* shortName, FlagTypes type, const char* helpString) argument
[all...]
H A DSkCommandLineFlags.cpp13 bool SkFlagInfo::CreateStringFlag(const char* name, const char* shortName, argument
16 SkFlagInfo* info = SkNEW_ARGS(SkFlagInfo, (name, shortName, kString_FlagType, helpString));
146 const SkString& shortName = flag->shortName(); local
147 if (shortName.size() > 0) {
148 SkDebugf(" or -%s", shortName.c_str());
228 flag->shortName().equals(helpFlags[k])) {
/external/icu/icu4c/source/tools/toolutil/
H A Duoptions.h56 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 Duoptions.c73 if(c==options[j].shortName) {
/external/skia/tools/flags/
H A DSkCommandLineFlags.h185 // 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 DSkCommandLineFlags.cpp13 bool SkFlagInfo::CreateStringFlag(const char* name, const char* shortName, argument
16 SkFlagInfo* info = SkNEW_ARGS(SkFlagInfo, (name, shortName, kString_FlagType, helpString));
146 const SkString& shortName = flag->shortName(); local
147 if (shortName.size() > 0) {
148 SkDebugf(" or -%s", shortName.c_str());
228 flag->shortName().equals(helpFlags[k])) {
/external/oprofile/libpopt/
H A Dpopthelp.c37 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 Dpopt.c69 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 Dpopt.h117 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 DTestResultsGenerator.java842 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/deqp/framework/delibs/decpp/
H A DdeCommandLine.hpp58 const char* shortName; member in struct:de::cmdline::Option
70 : shortName (shortName_)
82 : shortName (shortName_)
94 : shortName (shortName_)
107 : shortName (shortName_)
269 const char* shortName; member in struct:de::cmdline::detail::Parser::OptInfo
285 : shortName (DE_NULL)
377 opt.shortName = option.shortName;
H A DdeCommandLine.cpp130 DE_ASSERT(opt.shortName || opt.longName);
132 if (opt.shortName)
134 DE_ASSERT(shortOptMap.find(opt.shortName) == shortOptMap.end());
135 shortOptMap[opt.shortName] = &opt;
252 if (opt.shortName)
253 str << "-" << opt.shortName;
255 if (opt.shortName && opt.longName)
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/search_engines/
H A DTemplateUrlService.java41 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 DScenarioResults.java37 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 Dsunspider-analyze-results.js197 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 Dsunspider-compare-results.js261 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/oprofile/
H A Dpopt.h117 char shortName; /*!< may be NUL */ member in struct:poptOption
134 char shortName; /*!< may be NUL */ member in struct:poptAlias
/external/chromium_org/third_party/icu/source/tools/pkgdata/
H A Dpkgtypes.h111 const char *shortName; /* name of what we're building */ member in struct:UPKGOptions_
124 const char *libName; /* name for library (default: shortName) */
/external/icu/icu4c/source/tools/pkgdata/
H A Dpkgtypes.h111 const char *shortName; /* name of what we're building */ member in struct:UPKGOptions_
124 const char *libName; /* name for library (default: shortName) */
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...

Completed in 860 milliseconds

123