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

1 2 3 4 5 6 7 8 91011>>

  /sdk/emulator/opengl/host/tools/emugen/
main.cpp 93 std::string baseName = std::string(argv[optind]);
94 ApiGen apiEntries(baseName);
97 std::string typesFilename = inDir + "/" + baseName + TYPES_EXTENTION;
103 std::string filename = inDir + "/" + baseName + SPEC_EXTENSION;
111 apiEntries.genAttributesTemplate(inDir + "/" + baseName + ATTRIB_EXTENSION);
115 std::string attribFileName = inDir + "/" + baseName + ATTRIB_EXTENSION;
124 apiEntries.genOpcodes(encoderDir + "/" + baseName + "_opcodes.h");
125 apiEntries.genContext(encoderDir + "/" + baseName + "_client_context.h", ApiGen::CLIENT_SIDE);
126 apiEntries.genContextImpl(encoderDir + "/" + baseName + "_client_context.cpp", ApiGen::CLIENT_SIDE);
128 apiEntries.genProcTypes(encoderDir + "/" + baseName + "_client_proc.h", ApiGen::CLIENT_SIDE)
    [all...]
  /external/protobuf/
build.gradle 56 baseName "libprotobuf"
65 baseName "libprotobuf"
74 baseName "libprotobuf"
  /frameworks/opt/bitmap/src/com/android/bitmap/
NamedThreadFactory.java 28 public NamedThreadFactory(final String baseName) {
30 mBaseName = baseName;
  /external/chromium_org/third_party/skia/tools/
picture_utils.h 47 * @param baseName last part of the filename
52 const char *subdirOrNull, const SkString& baseName);
picture_utils.cpp 55 const char *subdirOrNull, const SkString& baseName) {
63 SkString fullPath = SkOSPath::SkPathJoin(partialPath.c_str(), baseName.c_str());
  /external/skia/tools/
picture_utils.h 47 * @param baseName last part of the filename
52 const char *subdirOrNull, const SkString& baseName);
picture_utils.cpp 55 const char *subdirOrNull, const SkString& baseName) {
63 SkString fullPath = SkOSPath::SkPathJoin(partialPath.c_str(), baseName.c_str());
  /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 +
  /external/icu/icu4c/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 +
  /external/chromium_org/content/child/
webfileutilities_impl.h 24 virtual blink::WebString baseName(const blink::WebString& path);
webfileutilities_impl.cc 48 WebString WebFileUtilitiesImpl::baseName(const WebString& path) {
49 return base::FilePath::FromUTF16Unsafe(path).BaseName().AsUTF16Unsafe();
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileUtilities.h 55 virtual WebString baseName(const WebString& path) { return WebString(); }
  /external/icu/icu4c/source/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/deqp/modules/gles3/functional/
es3fUniformBlockTests.cpp 488 std::string baseName = layoutFlags[layoutFlagNdx].name;
495 baseName += "_instance_array";
497 modeGroup->addChild(new BlockSingleStructCase(m_context, (baseName + "_vertex").c_str(), "", baseFlags|DECLARE_VERTEX, bufferModes[modeNdx].mode, isArray ? 3 : 0));
498 modeGroup->addChild(new BlockSingleStructCase(m_context, (baseName + "_fragment").c_str(), "", baseFlags|DECLARE_FRAGMENT, bufferModes[modeNdx].mode, isArray ? 3 : 0));
501 modeGroup->addChild(new BlockSingleStructCase(m_context, (baseName + "_both").c_str(), "", baseFlags|DECLARE_VERTEX|DECLARE_FRAGMENT, bufferModes[modeNdx].mode, isArray ? 3 : 0));
521 std::string baseName = layoutFlags[layoutFlagNdx].name;
528 baseName += "_instance_array";
530 modeGroup->addChild(new BlockSingleStructArrayCase(m_context, (baseName + "_vertex").c_str(), "", baseFlags|DECLARE_VERTEX, bufferModes[modeNdx].mode, isArray ? 3 : 0));
531 modeGroup->addChild(new BlockSingleStructArrayCase(m_context, (baseName + "_fragment").c_str(), "", baseFlags|DECLARE_FRAGMENT, bufferModes[modeNdx].mode, isArray ? 3 : 0));
534 modeGroup->addChild(new BlockSingleStructArrayCase(m_context, (baseName + "_both").c_str(), "", baseFlags|DECLARE_VERTEX|DECLARE_FRAGMENT, bufferModes[modeNdx].mode, isA (…)
    [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);
  /frameworks/base/libs/androidfw/tests/
Split_test.cpp 122 ResTable::resource_name baseName;
123 EXPECT_TRUE(table.getResourceName(base::R::string::test1, false, &baseName));
131 String16(baseName.package, baseName.packageLen),
135 String16(baseName.type, baseName.typeLen),
139 String16(baseName.name, baseName.nameLen),
  /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/smali/baksmali/
build.gradle 52 baseName = 'maven'
93 def outFile = fatJar.destinationDir.getPath() + '/' + fatJar.baseName + '-' + fatJar.version + '-small' + '.' + fatJar.extension
  /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/chromium_org/base/android/java/src/org/chromium/base/
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;

Completed in 6917 milliseconds

1 2 3 4 5 6 7 8 91011>>