Home
last modified time | relevance | path

Searched refs:attr (Results 1 – 11 of 11) sorted by relevance

/tools/apksig/src/main/java/com/android/apksig/internal/jar/
DManifestParser.java76 String attr; in readSection() local
79 attr = readAttribute(); in readSection()
80 if (attr == null) { in readSection()
83 } while (attr.length() == 0); in readSection()
85 attrs.add(parseAttr(attr)); in readSection()
89 attr = readAttribute(); in readSection()
90 if ((attr == null) || (attr.length() == 0)) { in readSection()
94 attrs.add(parseAttr(attr)); in readSection()
103 private static Attribute parseAttr(String attr) { in parseAttr() argument
108 int delimiterIndex = attr.indexOf(": "); in parseAttr()
[all …]
/tools/tradefederation/core/atest/
Dunittest_utils.py50 for attr in test_info_a.__dict__:
51 test_info_a_attr = getattr(test_info_a, attr)
52 test_info_b_attr = getattr(test_info_b, attr)
55 (attr, test_info_a_attr, test_info_b_attr)))
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DBuildInfoAttributePreparer.java40 for (Map.Entry<String, String> attr : mBuildAttributes.entrySet()) { in setUp()
41 String key = attr.getKey(); in setUp()
42 String value = attr.getValue(); in setUp()
/tools/tradefederation/core/src/com/android/tradefed/util/
DEmmaXmlReportParser.java108 Attr attr = element.getAttributeNode(attrName); in getAttributeValue() local
109 if (attr != null) { in getAttributeValue()
110 attrValue = attr.getValue(); in getAttributeValue()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/
DAndroidBinXmlParser.java381 ByteBuffer attr = in parseCurrentElementAttributesIfNotParsed() local
386 long nsId = getUnsignedInt32(attr); in parseCurrentElementAttributesIfNotParsed()
387 long nameId = getUnsignedInt32(attr); in parseCurrentElementAttributesIfNotParsed()
388 attr.position(attr.position() + 7); // skip ignored fields in parseCurrentElementAttributesIfNotParsed()
389 int valueType = getUnsignedInt8(attr); in parseCurrentElementAttributesIfNotParsed()
390 long valueData = getUnsignedInt32(attr); in parseCurrentElementAttributesIfNotParsed()
/tools/test/connectivity/acts/framework/acts/
Dtest_runner.py235 for attr in required_attributes:
236 if not hasattr(module, attr):
240 attr))
241 if not getattr(module, attr):
244 (attr, module.__name__))
/tools/tradefederation/core/res/jacoco/
Djacocoagent.jarMETA-INF/MANIFEST.MF META-INF/MTNMINDS.SF META-INF/MTNMINDS ...
Djacocoant.jarMETA-INF/MANIFEST.MF META-INF/MTNMINDS.SF META-INF/MTNMINDS ...
/tools/repohooks/tools/
Dpylintrc282 attr-rgx=[a-z_][a-z0-9_]{2,30}$
285 attr-name-hint=[a-z_][a-z0-9_]{2,30}$
378 defining-attr-methods=__init__,__new__,setUp
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v1/
DV1SchemeVerifier.java2023 for (Attribute attr : attrs) { in SignedAttributes()
2024 if (result.put(attr.attrType, attr.attrValues) != null) { in SignedAttributes()
2025 … throw new Pkcs7DecodingException("Duplicate signed attribute: " + attr.attrType); in SignedAttributes()
/tools/test/connectivity/acts/framework/acts/test_utils/tel/
Dtel_test_utils.py1348 for attr in ("startTime", "endTime", "direction", "isInterrupted",
1351 match = re.search(r"%s: (.*)" % attr, call)
1353 call_info[attr] = match.group(1)
4831 for attr in re.findall(r"(volume_.*)=\d+", out):
4832 ad.adb.shell("settings put system %s 0" % attr)