Searched refs:outName (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/tools/aapt2/
H A DNameMangler.h26 * Mangles the name in `outName` with the `package` and stores the mangled
27 * result in `outName`. The mangled name should contain symbols that are
31 static void mangle(const std::u16string& package, std::u16string* outName) { argument
32 *outName = package + u"$" + *outName;
36 * Unmangles the name in `outName`, storing the correct name back in `outName`
40 static bool unmangle(std::u16string* outName, std::u16string* outPackage) { argument
41 size_t pivot = outName->find(u'$');
46 outPackage->assign(outName
[all...]
H A DSourceXmlPullParser.cpp184 static void splitName(const char* name, std::u16string& outNs, std::u16string& outName) { argument
192 outName = util::utf8ToUtf16(name);
195 outName = util::utf8ToUtf16(p + 1);
H A DXmlDom.cpp42 static void splitName(const char* name, std::u16string* outNs, std::u16string* outName) { argument
50 *outName = util::utf8ToUtf16(name);
53 *outName = util::utf8ToUtf16(p + 1);
H A DResourceParser.cpp1099 static bool parseXmlAttributeName(StringPiece16 str, ResourceName* outName) { argument
1116 outName->package = package.toString();
1117 outName->type = ResourceType::kAttr;
1119 outName->entry = str.toString();
1121 outName->entry = name.toString();
/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java750 String outName = "android_" + jfunc.getName();
753 (outName.endsWith("Pointer") || outName.endsWith("PointerOES") ||
754 outName.endsWith("glDrawElements") ||
755 outName.endsWith("glDrawRangeElements") ||
756 outName.endsWith("glTexImage2D") ||
757 outName.endsWith("glTexSubImage2D") ||
758 outName.endsWith("glCompressedTexImage2D") ||
759 outName.endsWith("glCompressedTexSubImage2D") ||
760 outName
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp3807 bool ResTable::getResourceName(uint32_t resID, bool allowUtf8, resource_name* outName) const
3842 outName->package = grp->name.string();
3843 outName->packageLen = grp->name.size();
3845 outName->type8 = entry.typeStr.string8(&outName->typeLen);
3846 outName->name8 = entry.keyStr.string8(&outName->nameLen);
3848 outName->type8 = NULL;
3849 outName->name8 = NULL;
3851 if (outName
4550 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/base/media/java/android/mtp/
H A DMtpDatabase.java886 char[] outName, long[] outCreatedModified) {
904 path.getChars(start, end, outName, 0);
905 outName[end - start] = 0;
885 getObjectInfo(int handle, int[] outStorageFormatParent, char[] outName, long[] outCreatedModified) argument
/frameworks/base/include/androidfw/
H A DResourceTypes.h1574 bool getResourceName(uint32_t resID, bool allowUtf8, resource_name* outName) const;
1738 String16* outName,
/frameworks/base/tools/aapt/
H A DXMLNode.cpp1181 static void splitName(const char* name, String16* outNs, String16* outName)
1189 *outName = String16(name);
1192 *outName = String16(p+1);

Completed in 237 milliseconds