/frameworks/base/tools/aapt2/ |
H A D | NameMangler.h | 80 * Unmangles the name in `outName`, storing the correct name back in `outName` 84 static bool unmangle(std::u16string* outName, std::u16string* outPackage) { argument 85 size_t pivot = outName->find(u'$'); 90 outPackage->assign(outName->data(), pivot); 91 outName->assign(outName->data() + pivot + 1, outName->size() - (pivot + 1));
|
/frameworks/compile/slang/tests/P_reduce_general_accumulator/ |
H A D | gen-accumulator.pl | 57 my $outName = "${reduceName}_out"; 59 print "#pragma rs reduce(${reduceName}) accumulator(${accumName}) combiner(${combName}) outconverter(${outName})\n"; 63 print "static void ${outName}(int *out, const ${resultName} *accum) { }\n";
|
/frameworks/native/opengl/tools/glgen/src/ |
H A D | JniCodeEmitter.java | 798 String outName = "android_" + jfunc.getName(); 801 (outName.endsWith("Pointer") || outName.endsWith("PointerOES") || 802 outName.endsWith("glDrawElements") || 803 outName.endsWith("glDrawRangeElements") || 804 outName.endsWith("glTexImage2D") || 805 outName.endsWith("glTexSubImage2D") || 806 outName.endsWith("glCompressedTexImage2D") || 807 outName.endsWith("glCompressedTexSubImage2D") || 808 outName [all...] |
/frameworks/base/tools/aapt2/xml/ |
H A D | XmlPullParser.cpp | 189 static void splitName(const char* name, std::u16string& outNs, std::u16string& outName) { argument 197 outName = util::utf8ToUtf16(name); 200 outName = util::utf8ToUtf16(p + 1);
|
H A D | XmlDom.cpp | 42 static void splitName(const char* name, std::u16string* outNs, std::u16string* outName) { argument 50 *outName = util::utf8ToUtf16(name); 53 *outName = util::utf8ToUtf16(p + 1);
|
/frameworks/base/media/java/android/mtp/ |
H A D | MtpDatabase.java | 894 char[] outName, long[] outCreatedModified) { 912 path.getChars(start, end, outName, 0); 913 outName[end - start] = 0; 893 getObjectInfo(int handle, int[] outStorageFormatParent, char[] outName, long[] outCreatedModified) argument
|
/frameworks/base/libs/androidfw/ |
H A D | ResourceTypes.cpp | 3925 bool ResTable::getResourceName(uint32_t resID, bool allowUtf8, resource_name* outName) const 3962 outName->package = grp->name.string(); 3963 outName->packageLen = grp->name.size(); 3965 outName->type8 = entry.typeStr.string8(&outName->typeLen); 3966 outName->name8 = entry.keyStr.string8(&outName->nameLen); 3968 outName->type8 = NULL; 3969 outName->name8 = NULL; 3971 if (outName 4701 expandResourceRef(const char16_t* refStr, size_t refLen, String16* outPackage, String16* outType, String16* outName, const String16* defType, const String16* defPackage, const char** outErrorMsg, bool* outPublicOnly) argument [all...] |
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
H A D | HWC2.h | 290 [[clang::warn_unused_result]] Error getName(std::string* outName) const;
|
H A D | HWC2.cpp | 618 Error Display::getName(std::string* outName) const 636 *outName = std::string(rawName.cbegin(), rawName.cend());
|
H A D | HWC2On1Adapter.cpp | 755 Error HWC2On1Adapter::Display::getName(uint32_t* outSize, char* outName) argument 759 if (!outName) { 763 auto numCopied = mName.copy(outName, *outSize);
|
H A D | HWC2On1Adapter.h | 204 HWC2::Error getName(uint32_t* outSize, char* outName);
|
/frameworks/native/services/surfaceflinger/ |
H A D | Layer.h | 414 void getFenceData(String8* outName, uint64_t* outFrameNumber,
|
H A D | Layer.cpp | 2309 void Layer::getFenceData(String8* outName, uint64_t* outFrameNumber, argument 2312 *outName = mName;
|
/frameworks/base/include/androidfw/ |
H A D | ResourceTypes.h | 1601 bool getResourceName(uint32_t resID, bool allowUtf8, resource_name* outName) const; 1765 String16* outName,
|
/frameworks/base/tools/aapt/ |
H A D | XMLNode.cpp | 1199 static void splitName(const char* name, String16* outNs, String16* outName) 1207 *outName = String16(name); 1210 *outName = String16(p+1);
|