Searched refs:baseName (Results 1 - 25 of 27) sorted by relevance

12

/external/icu4c/test/intltest/
H A Dwindttst.cpp155 UnicodeString baseName(wlocale.getBaseName());
158 log->errln("DateTime format error for locale " + baseName + ": expected date \"" + expected +
163 UnicodeString baseName(wlocale.getBaseName());
166 log->errln("DateTime format error for locale " + baseName + ": expected time \"" + expected +
171 UnicodeString baseName(wlocale.getBaseName());
174 log->errln("Date format error for locale " + baseName + ": expected \"" + expected +
179 UnicodeString baseName(wlocale.getBaseName());
182 log->errln("Time format error for locale " + baseName + ": expected \"" + expected +
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 Dintltest.h106 virtual UBool runTest( char* name = NULL, char* par = NULL, char *baseName = NULL); // not to be overidden
213 virtual UBool runTestLoop( char* testname, char* par, char *baseName );
H A Dloctest.cpp1741 const char *baseName; member in struct:__anon4972
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/common/
H A Dlocid.cpp280 if (baseName && baseName != baseNameBuffer) {
281 uprv_free(baseName);
282 baseName = NULL;
287 : UObject(), fullName(fullNameBuffer), baseName(NULL)
298 : UObject(), fullName(fullNameBuffer), baseName(NULL)
308 : UObject(), fullName(fullNameBuffer), baseName(NULL)
443 : UObject(other), fullName(fullNameBuffer), baseName(NULL)
475 /* baseName is the cached result of getBaseName. if 'other' has a
476 baseName an
[all...]
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);
/external/webkit/Source/WebCore/plugins/gtk/
H A DPluginPackageGtk.cpp152 GOwnPtr<gchar> baseName(g_path_get_basename(finalPath.get()));
153 if (!g_strcmp0(baseName.get(), "libflashplayer.so")
173 if (!g_strcmp0(baseName.get(), "libflashplayer.so")) {
/external/bouncycastle/src/main/java/org/bouncycastle/x509/
H A DX509Util.java347 String baseName,
356 while ((alias = prov.getProperty("Alg.Alias." + baseName + "." + algorithm)) != null)
361 String className = prov.getProperty(baseName + "." + algorithm);
401 String baseName,
415 Implementation imp = getImplementation(baseName, Strings.toUpperCase(algorithm), prov[i]);
423 imp = getImplementation(baseName, algorithm, prov[i]);
346 getImplementation( String baseName, String algorithm, Provider prov) argument
400 getImplementation( String baseName, String algorithm) argument
/external/collada/src/dae/
H A DdaeURI.cpp128 /* out */ string& baseName,
140 //dir = baseName = extension = "";
141 //re.FullMatch(path, &dir, &baseName, &extension);
146 dir = baseName = extension = tmpFile = "";
148 findExt.PartialMatch(tmpFile, &baseName, &extension);
196 void daeURI::pathComponents(string& dir, string& baseName, string& ext) const { argument
197 parsePath(_path, dir, baseName, ext);
224 void daeURI::path(const string& dir, const string& baseName, const string& ext) { argument
225 path(addSlashToEnd(dir) + baseName + ext);
234 void daeURI::pathFileBase(const string& baseName) { argument
126 parsePath(const string& path, string& dir, string& baseName, string& extension) argument
367 string dir, baseName, ext; local
[all...]
/external/clang/utils/TableGen/
H A DClangASTNodesEmitter.h48 std::string baseName(Record &R) { function in class:llvm::ClangASTNodesEmitter
H A DClangASTNodesEmitter.cpp50 << R->getName() << ", " << baseName(*Base) << "))\n";
53 << baseName(*Base) << ")\n";
/external/webkit/Tools/MiniBrowser/qt/
H A DMiniBrowserApplication.cpp54 programName = program.baseName();
/external/icu4c/common/unicode/
H A Dlocid.h723 char* baseName; member in class:Locale
765 return &baseName[variantBegin];
/external/guava/src/com/google/common/io/
H A DFiles.java408 String baseName = System.currentTimeMillis() + "-";
411 File tempDir = new File(baseDir, baseName + counter);
418 + baseName + "0 to " + baseName + (TEMP_DIR_ATTEMPTS - 1) + ')');
/external/collada/include/dae/
H A DdaeURI.h221 // file:/folder/file.dae, dir = /folder/, baseName = file, ext = .dae
222 void pathComponents(std::string& dir, std::string& baseName, std::string& ext) const;
232 void path(const std::string& dir, const std::string& baseName, const std::string& ext);
237 void pathFileBase(const std::string& baseName);
/external/webkit/Source/WebCore/platform/gtk/
H A DFileSystemGtk.cpp173 GOwnPtr<gchar> baseName(g_path_get_basename(tmpFilename.data()));
174 return String::fromUTF8(baseName.get());
/external/icu4c/tools/toolutil/
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);
H A Ducm.h105 char baseName[UCNV_MAX_CONVERTER_NAME_LENGTH]; member in struct:UCMFile
/external/icu4c/tools/makeconv/
H A Dmakeconv.c513 if(data->ucm->baseName[0]==0) {
587 if(data->ucm->baseName[0]==0) {
726 /* assemble a path/filename for data->ucm->baseName */
729 uprv_strcpy(basename, data->ucm->baseName);
H A Dgencnvex.c127 length=(int32_t)uprv_strlen(extData->ucm->baseName)+1;
130 extData->ucm->baseName[length++]=0;
142 udata_writeBlock(pData, extData->ucm->baseName, length);
/external/webkit/Tools/QtTestBrowser/
H A Dmain.cpp171 programName = program.baseName();
/external/doclava/src/com/google/doclava/
H A DDoclava.java758 String baseName = cl.name();
759 baseName = baseName.substring(baseName.lastIndexOf('.') + 1);
760 return getPrintableName(containingClass) + '$' + baseName;
/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
H A DControlTest.java295 // the ResourceBundle for this baseName and Locale does not exists
296 List<Locale> result = control.getCandidateLocales("baseName",
309 result = control.getCandidateLocales("baseName", new Locale("one",
315 result = control.getCandidateLocales("baseName", new Locale("one", "",
321 result = control.getCandidateLocales("baseName", new Locale("", "two",
327 result = control.getCandidateLocales("baseName", new Locale("", "",
332 result = control.getCandidateLocales("baseName", new Locale("", "two",
337 result = control.getCandidateLocales("baseName", Locale.ROOT);
348 control.getCandidateLocales("baseName", null);
363 assertSame(testLocale, control.getFallbackLocale("baseName",
[all...]
/external/icu4c/test/cintltst/
H A Dcloctst.c2110 const char *baseName; member in struct:__anon4899
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);

Completed in 2198 milliseconds

12