Searched defs:shortName (Results 1 - 25 of 33) sorted by relevance

12

/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 }
/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 }
/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/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/chromium_org/third_party/skia/tools/flags/
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])) {
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...]
/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/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/skia/tools/flags/
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])) {
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...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DCompositingReasons.h150 const char* shortName; member in struct:WebCore::CompositingReasonStringMap
/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;
/external/oprofile/libpopt/
H A Dpopt.h117 char shortName; /*!< may be NUL */ member in struct:poptOption
134 char shortName; /*!< may be NUL */ member in struct:poptAlias
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...]
/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/skia/bench/
H A Dbenchmain.cpp660 const struct { char shortName; const char* longName; double ms; } times[] = { member in struct:__anon14278
670 if (strchr(FLAGS_timers[0], times[i].shortName) && times[i].ms > 0) {
/external/skia/bench/
H A Dbenchmain.cpp660 const struct { char shortName; const char* longName; double ms; } times[] = { member in struct:__anon29546
670 if (strchr(FLAGS_timers[0], times[i].shortName) && times[i].ms > 0) {
/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. ...
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp1394 StringRef shortName = guessLibraryShortName(Name, isFramework, Suffix); local
1395 if (shortName == StringRef())
1398 LibrariesShortNames.push_back(shortName);
/external/chromium_org/third_party/skia/gm/
H A Dgmmain.cpp209 * Assemble shortNamePlusConfig from (surprise!) shortName and configName.
212 * For example, shortName "selftest1" and configName "8888" could be assembled into
215 SkString make_shortname_plus_config(const char *shortName, const char *configName) { argument
218 name.append(shortName);
220 name.appendf("%s%c%s", configName, SkPATH_SEPARATOR, shortName);
222 name.appendf("%s_%s", shortName, configName);
231 const char *shortName,
235 SkString filename = make_shortname_plus_config(shortName, configName);
246 const char *shortName,
254 filename.append(shortName);
230 make_filename(const char *path, const char *shortName, const char *configName, const char *renderModeDescriptor, const char *suffix) argument
245 make_bitmap_filename(const char *path, const char *shortName, const char *configName, const char *renderModeDescriptor, const GmResultDigest &bitmapDigest) argument
804 compare_to_expectations(Expectations expectations, const BitmapAndDigest& actualBitmapAndDigest, const char *shortName, const char *configName, const char *renderModeDescriptor, bool addToJsonSummary) argument
989 compare_test_results_to_reference_bitmap( const char *shortName, const char *configName, const char *renderModeDescriptor, SkBitmap& actualBitmap, const SkBitmap* referenceBitmap) argument
2329 const char* shortName = gm->getName(); local
[all...]
/external/skia/gm/
H A Dgmmain.cpp209 * Assemble shortNamePlusConfig from (surprise!) shortName and configName.
212 * For example, shortName "selftest1" and configName "8888" could be assembled into
215 SkString make_shortname_plus_config(const char *shortName, const char *configName) { argument
218 name.append(shortName);
220 name.appendf("%s%c%s", configName, SkPATH_SEPARATOR, shortName);
222 name.appendf("%s_%s", shortName, configName);
231 const char *shortName,
235 SkString filename = make_shortname_plus_config(shortName, configName);
246 const char *shortName,
254 filename.append(shortName);
230 make_filename(const char *path, const char *shortName, const char *configName, const char *renderModeDescriptor, const char *suffix) argument
245 make_bitmap_filename(const char *path, const char *shortName, const char *configName, const char *renderModeDescriptor, const GmResultDigest &bitmapDigest) argument
804 compare_to_expectations(Expectations expectations, const BitmapAndDigest& actualBitmapAndDigest, const char *shortName, const char *configName, const char *renderModeDescriptor, bool addToJsonSummary) argument
989 compare_test_results_to_reference_bitmap( const char *shortName, const char *configName, const char *renderModeDescriptor, SkBitmap& actualBitmap, const SkBitmap* referenceBitmap) argument
2329 const char* shortName = gm->getName(); local
[all...]
/external/yaffs2/yaffs2/
H A Dyaffs_guts.h441 YCHAR shortName[YAFFS_SHORT_NAME_LENGTH + 1]; member in struct:yaffs_ObjectStruct
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
H A DbuildTools.jarMETA-INF/MANIFEST.MF org/eclipse/releng/Mailer.class Mailer.java package org.eclipse ...
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp3282 const char* shortName = OBJ_nid2sn(nid); local
3283 JNI_TRACE("EC_GROUP_get_curve_name(%p) => \"%s\"", group, shortName);
3284 return env->NewStringUTF(shortName);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...

Completed in 6202 milliseconds

12