Searched defs:baseName (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFileUtilities.h55 virtual WebString baseName(const WebString& path) { return WebString(); } function in class:blink::WebFileUtilities
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
H A DbuildNotes.php44 $baseName = $parts[1]; variable
45 $parts = explode(".", $baseName);
/external/chromium_org/webkit/glue/
H A Dwebfileutilities_impl.cc47 WebString WebFileUtilitiesImpl::baseName(const WebString& path) { function in class:webkit_glue::WebFileUtilitiesImpl
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dlocid.h723 char* baseName; member in class:Locale
765 return &baseName[variantBegin];
/external/icu4c/common/unicode/
H A Dlocid.h729 char* baseName; member in class:Locale
771 return &baseName[variantBegin];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509Util.java339 String baseName,
348 while ((alias = prov.getProperty("Alg.Alias." + baseName + "." + algorithm)) != null)
353 String className = prov.getProperty(baseName + "." + algorithm);
393 String baseName,
407 Implementation imp = getImplementation(baseName, Strings.toUpperCase(algorithm), prov[i]);
415 imp = getImplementation(baseName, algorithm, prov[i]);
338 getImplementation( String baseName, String algorithm, Provider prov) argument
392 getImplementation( String baseName, String algorithm) argument
/external/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp46 std::string baseName(Record &R) { function in class:__anon17596::ClangASTNodesEmitter
98 << R->getName() << ", " << baseName(*Base) << "))\n";
101 << baseName(*Base) << ")\n";
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DResourceBundleTest.java317 String baseName, @SuppressWarnings("unused")
367 String baseName) {
383 String baseName) {
394 String baseName, @SuppressWarnings("unused")
316 getCandidateLocales(@uppressWarnings�) String baseName, @SuppressWarnings(�) Locale locale) argument
366 getFormats(@uppressWarnings�) String baseName) argument
382 getFormats(@uppressWarnings�) String baseName) argument
393 getFallbackLocale(@uppressWarnings�) String baseName, @SuppressWarnings(�) Locale locale) argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/common/
H A DPerfTraceEvent.java314 * @param baseName The base name to use when generating the name.
318 public static String makeSafeTraceName(String baseName, String suffix) { argument
321 if (baseName.length() + suffixLength > MAX_NAME_LENGTH) {
322 baseName = baseName.substring(0, MAX_NAME_LENGTH - suffixLength);
324 return baseName + suffix;
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ducm.h105 char baseName[UCNV_MAX_CONVERTER_NAME_LENGTH]; member in struct:UCMFile
H A Dpkgitems.cpp517 char baseName[32]; local
531 if(baseNameLength>=(int32_t)sizeof(baseName)) {
537 ds->swapInvChars(ds, inBaseName, baseNameLength+1, baseName, pErrorCode);
539 checkIDSuffix(itemName, baseName, -1, ".cnv", check, context, pErrorCode);
/external/chromium_org/third_party/libxml/src/win32/
H A Dconfigure.js14 var baseName = "libxml2"; variable
591 var outVerString = baseName + " version: " + verMajor + "." + verMinor + "." + verMicro;
/external/icu4c/tools/toolutil/
H A Ducm.h106 char baseName[UCNV_MAX_CONVERTER_NAME_LENGTH]; member in struct:UCMFile
H A Dpkgitems.cpp517 char baseName[32]; local
531 if(baseNameLength>=(int32_t)sizeof(baseName)) {
537 ds->swapInvChars(ds, inBaseName, baseNameLength+1, baseName, pErrorCode);
539 checkIDSuffix(itemName, baseName, -1, ".cnv", check, context, pErrorCode);
/external/skia/tools/skpdiff/
H A DSkDiffContext.cpp87 SkString baseName = SkOSPath::SkBasename(baselinePath); local
89 newRecord->fCommonName = get_common_prefix(baseName, testName);
/external/chromium_org/third_party/icu/source/common/
H A Dudata.cpp287 const char *baseName; local
289 baseName = findBasename(path); /* Cache remembers only the base name, not the full path. */
292 el = (DataCacheElement *)uhash_get(htable, baseName);
298 fprintf(stderr, "Cache: [%s] -> %p\n", baseName, retVal);
306 const char *baseName; local
331 baseName = findBasename(path);
332 nameLen = (int32_t)uprv_strlen(baseName);
340 uprv_strcpy(newElement->name, baseName);
H A Ducnvmbcs.c1447 const char *baseName; local
1463 baseName=(const char *)header+headerLength*4;
1464 if(0==uprv_strcmp(baseName, sharedData->staticData->name)) {
1477 args.name=baseName;
/external/icu4c/common/
H A Dudata.cpp311 const char *baseName; local
313 baseName = findBasename(path); /* Cache remembers only the base name, not the full path. */
316 el = (DataCacheElement *)uhash_get(htable, baseName);
322 fprintf(stderr, "Cache: [%s] -> %p\n", baseName, retVal);
330 const char *baseName; local
355 baseName = findBasename(path);
356 nameLen = (int32_t)uprv_strlen(baseName);
364 uprv_strcpy(newElement->name, baseName);
H A Ducnvmbcs.c1449 const char *baseName; local
1465 baseName=(const char *)header+headerLength*4;
1466 if(0==uprv_strcmp(baseName, sharedData->staticData->name)) {
1479 args.name=baseName;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dintltest.cpp606 UBool IntlTest::runTest( char* name, char* par, char *baseName )
613 if(baseName == NULL) {
615 baseName=baseNameBuffer;
616 strcpy(baseName, "/");
629 rval = runTestLoop( NULL, par, baseName );
636 rval = runTestLoop( name, par, baseName );
663 UBool IntlTest::runTestLoop( char* testname, char* par, char *baseName )
672 if(baseName == NULL) {
673 printf("ERROR: baseName can't be null.\n");
676 if ((char *)this->basePath != baseName) {
1329 char baseName[1024]; local
[all...]
H A Dloctest.cpp1741 const char *baseName; member in struct:__anon11886
1752 if(strcmp(testCases[i].baseName, loc.getBaseName())) {
1753 errln("For locale \"%s\" expected baseName \"%s\", but got \"%s\"",
1754 testCases[i].localeID, testCases[i].baseName, loc.getBaseName());
/external/icu4c/test/intltest/
H A Dintltest.cpp629 UBool IntlTest::runTest( char* name, char* par, char *baseName )
636 if(baseName == NULL) {
638 baseName=baseNameBuffer;
639 strcpy(baseName, "/");
652 rval = runTestLoop( NULL, par, baseName );
659 rval = runTestLoop( name, par, baseName );
685 UBool IntlTest::runTestLoop( char* testname, char* par, char *baseName )
694 if(baseName == NULL) {
695 printf("ERROR: baseName can't be null.\n");
698 if ((char *)this->basePath != baseName) {
1362 char baseName[1024]; local
[all...]
H A Dloctest.cpp1762 const char *baseName; member in struct:__anon19421
1773 if(strcmp(testCases[i].baseName, loc.getBaseName())) {
1774 errln("For locale \"%s\" expected baseName \"%s\", but got \"%s\"",
1775 testCases[i].localeID, testCases[i].baseName, loc.getBaseName());
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcloctst.c2110 const char *baseName; member in struct:__anon11811
2118 char baseName[256]; local
2122 baseNameLen = uloc_getBaseName(testCases[i].localeID, baseName, 256, &status);
2123 if(strcmp(testCases[i].baseName, baseName)) {
2124 log_err("For locale \"%s\" expected baseName \"%s\", but got \"%s\"\n",
2125 testCases[i].localeID, testCases[i].baseName, baseName);
/external/icu4c/test/cintltst/
H A Dcloctst.c2256 const char *baseName; member in struct:__anon19329
2264 char baseName[256]; local
2268 baseNameLen = uloc_getBaseName(testCases[i].localeID, baseName, 256, &status);
2269 if(strcmp(testCases[i].baseName, baseName)) {
2270 log_err("For locale \"%s\" expected baseName \"%s\", but got \"%s\"\n",
2271 testCases[i].localeID, testCases[i].baseName, baseName);

Completed in 763 milliseconds

12