HomeSort by relevance Sort by last modified time
    Searched refs:baseName (Results 1 - 25 of 212) sorted by null

1 2 3 4 5 6 7 8 9

  /sdk/emulator/opengl/host/tools/emugen/
main.cpp 92 std::string baseName = std::string(argv[optind]);
93 ApiGen apiEntries(baseName);
96 std::string typesFilename = inDir + "/" + baseName + TYPES_EXTENTION;
102 std::string filename = inDir + "/" + baseName + SPEC_EXTENSION;
110 apiEntries.genAttributesTemplate(inDir + "/" + baseName + ATTRIB_EXTENSION);
114 std::string attribFileName = inDir + "/" + baseName + ATTRIB_EXTENSION;
123 apiEntries.genOpcodes(encoderDir + "/" + baseName + "_opcodes.h");
124 apiEntries.genContext(encoderDir + "/" + baseName + "_client_context.h", ApiGen::CLIENT_SIDE);
125 apiEntries.genContextImpl(encoderDir + "/" + baseName + "_client_context.cpp", ApiGen::CLIENT_SIDE);
127 apiEntries.genProcTypes(encoderDir + "/" + baseName + "_client_proc.h", ApiGen::CLIENT_SIDE)
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
windttst.cpp 155 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 +
intltest.cpp 606 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) {
    [all...]
  /external/icu4c/test/intltest/
windttst.cpp 155 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 +
intltest.cpp 629 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) {
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileUtilities.h 55 virtual WebString baseName(const WebString& path) { return WebString(); }
  /external/icu4c/common/
locid.cpp 219 if (baseName && baseName != baseNameBuffer) {
220 uprv_free(baseName);
221 baseName = NULL;
226 : UObject(), fullName(fullNameBuffer), baseName(NULL)
237 : UObject(), fullName(fullNameBuffer), baseName(NULL)
247 : UObject(), fullName(fullNameBuffer), baseName(NULL)
382 : UObject(other), fullName(fullNameBuffer), baseName(NULL)
414 /* baseName is the cached result of getBaseName. if 'other' has a
415 baseName and it fits in baseNameBuffer, then copy it. otherwise se
    [all...]
  /libcore/luni/src/main/java/java/util/
ResourceBundle.java 58 * <li>BaseName (base bundle)
171 * <strong>Example</strong> For the basename "BaseName", the {@code Locale} of the
180 * <li>BaseName</li>
244 * @param baseName
252 public static ResourceBundle getBundle(String baseName, ResourceBundle.Control control) {
253 return getBundle(baseName, Locale.getDefault(), getLoader(), control);
259 * @param baseName
269 public static ResourceBundle getBundle(String baseName,
271 return getBundle(baseName, targetLocale, getLoader(), control)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
buildNotes.php 44 $baseName = $parts[1];
45 $parts = explode(".", $baseName);
  /external/chromium_org/third_party/icu/source/common/
locid.cpp 280 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 and it fits in baseNameBuffer, then copy it. otherwise se
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ReportExporter.java 68 String baseName = getReportBaseName();
69 File reportFile = new File(reportPath, baseName + ".zip");
73 ZipEntry entry = new ZipEntry(baseName + ".xml");
  /frameworks/base/core/java/android/util/
AtomicFile.java 53 public AtomicFile(File baseName) {
54 mBaseName = baseName;
55 mBackupName = new File(baseName.getPath() + ".bak");
  /frameworks/base/core/java/com/android/internal/os/
AtomicFile.java 47 public AtomicFile(File baseName) {
48 mBaseName = baseName;
49 mBackupName = new File(baseName.getPath() + ".bak");
  /frameworks/support/v4/java/android/support/v4/util/
AtomicFile.java 51 public AtomicFile(File baseName) {
52 mBaseName = baseName;
53 mBackupName = new File(baseName.getPath() + ".bak");
  /external/chromium_org/webkit/glue/
webfileutilities_impl.h 26 virtual blink::WebString baseName(const blink::WebString& path);
webfileutilities_impl.cc 47 WebString WebFileUtilitiesImpl::baseName(const WebString& path) {
48 return base::FilePath::FromUTF16Unsafe(path).BaseName().AsUTF16Unsafe();
  /packages/services/Telephony/src/com/android/phone/
CallTime.java 202 String baseName = file.getPath() + File.separator + "callstate";
203 String dataFile = baseName + ".data";
204 String keyFile = baseName + ".key";
218 Debug.startMethodTracing(baseName, 8 * 1024 * 1024);
  /external/smali/baksmali/
build.gradle 58 def outFile = jar.destinationDir.getPath() + '/' + jar.baseName + '-' + jar.version + '-small' + '.' + jar.extension
  /external/chromium_org/content/public/android/java/src/org/chromium/content/common/
PerfTraceEvent.java 314 * @param baseName The base name to use when generating the name.
318 public static String makeSafeTraceName(String baseName, String suffix) {
321 if (baseName.length() + suffixLength > MAX_NAME_LENGTH) {
322 baseName = baseName.substring(0, MAX_NAME_LENGTH - suffixLength);
324 return baseName + suffix;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509Util.java 339 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]);
  /external/chromium_org/third_party/icu/source/common/unicode/
locid.h 723 char* baseName;
765 return &baseName[variantBegin];
  /external/icu4c/common/unicode/
locid.h 729 char* baseName;
771 return &baseName[variantBegin];
  /frameworks/base/services/java/com/android/server/
IntentResolver.java 398 String baseName = name;
401 baseName = name.substring(0, slashpos).intern();
409 addFilter(mBaseTypeToFilter, baseName, filter);
411 addFilter(mWildTypeToFilter, baseName, filter);
429 String baseName = name;
432 baseName = name.substring(0, slashpos).intern();
440 remove_all_objects(mBaseTypeToFilter, baseName, filter);
442 remove_all_objects(mWildTypeToFilter, baseName, filter);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 793 String baseName = realFqcn.substring(dotIndex+1);
795 if (Character.isLowerCase(baseName.charAt(0))) {
796 if (baseName.equals(VIEW_TAG)) {
800 baseName = "ViewTag"; //$NON-NLS-1$
802 baseName = Character.toUpperCase(baseName.charAt(0)) + baseName.substring(1);
805 baseName + "Rule"; //$NON-NLS-1$
    [all...]
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 46 std::string baseName(Record &R) {
76 std::string BaseName = macroName(Base->getName());
93 << BaseName << "(Type, Base)\n";
98 << R->getName() << ", " << baseName(*Base) << "))\n";
101 << baseName(*Base) << ")\n";

Completed in 1458 milliseconds

1 2 3 4 5 6 7 8 9