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

  /ndk/build/awk/
xml.awk 31 split("", XML_ATTR);
91 XML_ATTR[_xml_attrib] = _xml_value; # store attribute name/value
146 # XML_ATTR: a map of attributes for the type. Only set for "BEGIN" types.
163 for (attr in XML_ATTR) {
164 printf " %s='%s'", attr, XML_ATTR[attr];
293 # After that, we simply store the value into the XML_ATTR associative
296 # XML_ATTR[_xml_attrib] = _xml_value;
extract-launchable.awk 44 name = XML_ATTR["android:name"];
82 if ( XML_ATTR["android:name"] == "android.intent.action.MAIN" ) {
90 if ( action_main && XML_ATTR["android:name"] == "android.intent.category.LAUNCHER" ) {
105 split("", XML_ATTR);
165 XML_ATTR[_xml_attrib] = _xml_value; # store attribute name/value
extract-debuggable.awk 28 DEBUGGABLE = XML_ATTR["android:debuggable"];
46 split("", XML_ATTR);
106 XML_ATTR[_xml_attrib] = _xml_value; # store attribute name/value
extract-minsdkversion.awk 28 MIN_SDK_VERSION = XML_ATTR["android:minsdkversion"];
43 split("", XML_ATTR);
103 XML_ATTR[_xml_attrib] = _xml_value; # store attribute name/value
extract-package-name.awk 30 PACKAGE = XML_ATTR["package"];
47 split("", XML_ATTR);
107 XML_ATTR[_xml_attrib] = _xml_value; # store attribute name/value
  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/
SubPlanTest.java 49 private static final String XML_ATTR = "%s=\"%s\"";
127 attributes.add(String.format(XML_ATTR, filterType, filter));
130 attributes.add(String.format(XML_ATTR, "name", name));
133 attributes.add(String.format(XML_ATTR, "abi", abi));

Completed in 168 milliseconds