HomeSort by relevance Sort by last modified time
    Searched refs:FindAttribute (Results 1 - 18 of 18) sorted by null

  /frameworks/base/tools/aapt2/cmd/
Util_test.cpp 34 EXPECT_EQ(root->FindAttribute("", "split")->value, "config.b_sr_Latn_en_rUS_land");
36 EXPECT_EQ(root->FindAttribute("", "targetConfig")->value, "b+sr+Latn,en-rUS-land");
Util.cpp 332 const xml::Attribute* package_attr = manifest_el->FindAttribute({}, "package");
348 manifest_el->FindAttribute(xml::kSchemaAndroid, "versionCode")) {
359 manifest_el->FindAttribute(xml::kSchemaAndroid, "revisionCode")) {
369 if (const xml::Attribute* split_name_attr = manifest_el->FindAttribute({}, "split")) {
381 uses_sdk_el->FindAttribute(xml::kSchemaAndroid, "minSdkVersion")) {
Link.cpp 808 xml::Attribute* attr = manifest_xml->root->FindAttribute(xml::kSchemaAndroid, "versionCode");
831 xml::Attribute* attr = manifest_xml->root->FindAttribute(xml::kSchemaAndroid, "versionName");
    [all...]
  /frameworks/base/tools/aapt2/link/
ManifestFixer.cpp 33 xml::Attribute* attr = el->FindAttribute(xml::kSchemaAndroid, "name");
71 if (xml::Attribute* attr = el->FindAttribute(xml::kSchemaAndroid, "name")) {
78 xml::Attribute* attr = el->FindAttribute(xml::kSchemaAndroid, "name");
88 xml::Attribute* attr = el->FindAttribute(xml::kSchemaAndroid, "name");
105 if (el->FindAttribute(xml::kSchemaAndroid, attr) == nullptr) {
118 xml::Attribute* attr = el->FindAttribute({}, kFeatureSplit);
125 xml::Attribute* attr = el->FindAttribute(xml::kSchemaAndroid, kIsFeatureSplit);
145 xml::Attribute* attr = el->FindAttribute({}, "package");
161 attr = el->FindAttribute({}, "split");
175 if (xml::Attribute* attr = el->FindAttribute("", "coreApp"))
    [all...]
XmlCompatVersioner.cpp 37 xml::Attribute* dst_attr = dst_el->FindAttribute(src_attr.namespace_uri, src_attr.name);
ManifestFixer_test.cpp 134 attr = el->FindAttribute(xml::kSchemaAndroid, "minSdkVersion");
137 attr = el->FindAttribute(xml::kSchemaAndroid, "targetSdkVersion");
153 attr = el->FindAttribute(xml::kSchemaAndroid, "minSdkVersion");
156 attr = el->FindAttribute(xml::kSchemaAndroid, "targetSdkVersion");
172 attr = el->FindAttribute(xml::kSchemaAndroid, "minSdkVersion");
175 attr = el->FindAttribute(xml::kSchemaAndroid, "targetSdkVersion");
189 attr = el->FindAttribute(xml::kSchemaAndroid, "minSdkVersion");
192 attr = el->FindAttribute(xml::kSchemaAndroid, "targetSdkVersion");
264 attr = manifest_el->FindAttribute({}, "package");
270 attr = uses_split_el->FindAttribute(xml::kSchemaAndroid, "name")
    [all...]
  /frameworks/base/tools/aapt2/java/
ProguardRules.cpp 179 node->FindAttribute(xml::kSchemaAndroid, "fragment");
201 xml::Attribute* attr = node->FindAttribute({}, "class");
224 xml::Attribute* attr = node->FindAttribute({}, "package");
230 xml::Attribute* attr = node->FindAttribute(xml::kSchemaAndroid, "backupAgent");
238 xml::Attribute* default_process = node->FindAttribute(xml::kSchemaAndroid, "process");
248 xml::Attribute* component_process = node->FindAttribute(xml::kSchemaAndroid, "process");
259 xml::Attribute* attr = node->FindAttribute(xml::kSchemaAndroid, "name");
ManifestClassGenerator.cpp 61 xml::Attribute* attr = el->FindAttribute(xml::kSchemaAndroid, "name");
  /frameworks/base/tools/aapt2/xml/
XmlPullParser.h 148 const_iterator FindAttribute(android::StringPiece namespace_uri, android::StringPiece name) const;
190 Maybe<android::StringPiece> FindAttribute(const XmlPullParser* parser,
295 inline XmlPullParser::const_iterator XmlPullParser::FindAttribute(
XmlPullParser.cpp 290 Maybe<StringPiece> FindAttribute(const XmlPullParser* parser,
292 auto iter = parser->FindAttribute("", name);
301 auto iter = parser->FindAttribute("", name);
XmlDom.h 100 Attribute* FindAttribute(const android::StringPiece& ns, const android::StringPiece& name);
101 const Attribute* FindAttribute(const android::StringPiece& ns,
XmlDom.cpp 413 Attribute* Element::FindAttribute(const StringPiece& ns, const StringPiece& name) {
414 return const_cast<Attribute*>(static_cast<const Element*>(this)->FindAttribute(ns, name));
417 const Attribute* Element::FindAttribute(const StringPiece& ns, const StringPiece& name) const {
427 Attribute* attr = FindAttribute(ns, name);
461 const Attribute* attr = el->FindAttribute(attr_ns, attr_name);
  /external/tinyxml2/
tinyxml2.h     [all...]
xmltest.cpp 940 const XMLAttribute* attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-text");
942 attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-int");
944 attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-unsigned");
946 attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-int64");
948 attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-bool");
950 attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-double");
    [all...]
  /frameworks/base/tools/aapt2/compile/
InlineXmlFormatParser.cpp 52 xml::Attribute* attr = el->FindAttribute({}, "name");
  /frameworks/base/tools/aapt2/optimize/
MultiApkGenerator.cpp 278 xml::Attribute* versionCode = manifest_el->FindAttribute(kSchemaAndroid, "versionCode");
300 uses_sdk_el->FindAttribute(xml::kSchemaAndroid, "minSdkVersion")) {
  /frameworks/base/tools/aapt2/
ResourceParser.cpp 786 xml::FindAttribute(parser, "formatted")) {
798 if (Maybe<StringPiece> translatable_attr = xml::FindAttribute(parser, "translatable")) {
    [all...]
  /frameworks/base/tools/aapt2/configuration/
ConfigurationParser.cpp 115 const xml::Attribute* version = element->FindAttribute("", "version-code-order");

Completed in 267 milliseconds