Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 25 of 39) sorted by relevance

12

/tools/loganalysis/tests/src/com/android/loganalysis/item/
DGenericItemTest.java77 Map<String, Object> attributes; in testMergeAttributes() local
79 attributes = mEmptyItem1.mergeAttributes(mEmptyItem1, ATTRIBUTES); in testMergeAttributes()
80 assertNull(attributes.get("string")); in testMergeAttributes()
81 assertNull(attributes.get("integer")); in testMergeAttributes()
83 attributes = mEmptyItem1.mergeAttributes(mEmptyItem2, ATTRIBUTES); in testMergeAttributes()
84 assertNull(attributes.get("string")); in testMergeAttributes()
85 assertNull(attributes.get("integer")); in testMergeAttributes()
87 attributes = mEmptyItem2.mergeAttributes(mEmptyItem1, ATTRIBUTES); in testMergeAttributes()
88 assertNull(attributes.get("string")); in testMergeAttributes()
89 assertNull(attributes.get("integer")); in testMergeAttributes()
[all …]
/tools/apksig/src/main/java/com/android/apksig/internal/jar/
DSignatureFileWriter.java32 public static void writeMainSection(OutputStream out, Attributes attributes) in writeMainSection() argument
37 String signatureVersion = attributes.getValue(Attributes.Name.SIGNATURE_VERSION); in writeMainSection()
44 if (attributes.size() > 1) { in writeMainSection()
46 ManifestWriter.getAttributesSortedByName(attributes); in writeMainSection()
53 public static void writeIndividualSection(OutputStream out, String name, Attributes attributes) in writeIndividualSection() argument
55 ManifestWriter.writeIndividualSection(out, name, attributes); in writeIndividualSection()
DManifestWriter.java40 public static void writeMainSection(OutputStream out, Attributes attributes) in writeMainSection() argument
45 String manifestVersion = attributes.getValue(Attributes.Name.MANIFEST_VERSION); in writeMainSection()
52 if (attributes.size() > 1) { in writeMainSection()
53 SortedMap<String, String> namedAttributes = getAttributesSortedByName(attributes); in writeMainSection()
60 public static void writeIndividualSection(OutputStream out, String name, Attributes attributes) in writeIndividualSection() argument
64 if (!attributes.isEmpty()) { in writeIndividualSection()
65 writeAttributes(out, getAttributesSortedByName(attributes)); in writeIndividualSection()
108 static SortedMap<String, String> getAttributesSortedByName(Attributes attributes) { in getAttributesSortedByName() argument
109 Set<Map.Entry<Object, Object>> attributesEntries = attributes.entrySet(); in getAttributesSortedByName()
/tools/tradefederation/contrib/src/com/android/regression/tests/
DMetricsXmlParser.java80 public void startElement(String uri, String localName, String name, Attributes attributes) in startElement() argument
84 String testCount = getMandatoryAttribute(name, "tests", attributes); in startElement()
86 mMetrics.addRunMetric(TIME_TAG, getMandatoryAttribute(name, TIME_TAG, attributes)); in startElement()
90 String testClassName = getMandatoryAttribute(name, "classname", attributes); in startElement()
91 String methodName = getMandatoryAttribute(name, "testname", attributes); in startElement()
95 String metricName = getMandatoryAttribute(name, "name", attributes); in startElement()
96 String metricValue = getMandatoryAttribute(name, "value", attributes); in startElement()
102 String metricName = getMandatoryAttribute(name, "name", attributes); in startElement()
103 String metricValue = getMandatoryAttribute(name, "value", attributes); in startElement()
110 private String getMandatoryAttribute(String tagName, String attrName, Attributes attributes) in getMandatoryAttribute() argument
[all …]
/tools/asuite/aidegen/lib/
Ddom_util.py26 def find_special_node(parent, element_name, attributes=None): argument
54 def compare_element_with_attributes(element, attributes=None): argument
115 def update_element_with_condition(element, attributes, target_name, argument
138 def insert_element_data(element, attributes, target_name, target_value): argument
/tools/tradefederation/core/src/com/android/tradefed/util/
DJUnitXmlParser.java79 public void startElement(String uri, String localName, String name, Attributes attributes) in startElement() argument
85 String testSuiteName = getMandatoryAttribute(name, "name", attributes); in startElement()
86 String testCountString = getMandatoryAttribute(name, "tests", attributes); in startElement()
87 mRunTimeMillis = getTimeMillis(name, attributes); in startElement()
95 String testClassName = Strings.nullToEmpty(attributes.getValue("classname")); in startElement()
99 String methodName = getMandatoryAttribute(name, "name", attributes); in startElement()
111 String value = attributes.getValue("message"); in startElement()
159 String getMandatoryAttribute(String tagName, String attrName, Attributes attributes) in getMandatoryAttribute() argument
161 String value = attributes.getValue(attrName); in getMandatoryAttribute()
172 long getTimeMillis(String tagName, Attributes attributes) throws SAXException { in getTimeMillis() argument
[all …]
DSubprocessTestResultsParser.java605 Map<String, String> attributes = eventEnd.mBuildAttributes; in handleEvent() local
607 if (!attributes.containsKey(key.toString())) { in handleEvent()
610 String val = attributes.remove(key.toString()); in handleEvent()
623 if (attributes.containsKey(TfObjectTracker.TF_OBJECTS_TRACKING_KEY)) { in handleEvent()
624 String val = attributes.get(TfObjectTracker.TF_OBJECTS_TRACKING_KEY); in handleEvent()
637 attributes.remove(TfObjectTracker.TF_OBJECTS_TRACKING_KEY); in handleEvent()
639 infos.get(0).addBuildAttributes(attributes); in handleEvent()
/tools/tradefederation/core/src/com/android/tradefed/config/
DConfigurationXmlParser.java107 public void startElement(String uri, String localName, String name, Attributes attributes) in startElement() argument
110 final String objectTypeName = attributes.getValue("type"); in startElement()
120 addObject(objectTypeName, attributes); in startElement()
127 String deviceName = attributes.getValue("name"); in startElement()
144 addObject(localName, attributes); in startElement()
178 addObject(localName, attributes); in startElement()
189 addObject(localName, attributes); in startElement()
191 String optionName = attributes.getValue("name"); in startElement()
196 String optionKey = attributes.getValue("key"); in startElement()
200 String optionValue = attributes.getValue("value"); in startElement()
[all …]
/tools/metalava/src/main/java/com/android/tools/metalava/
DAnnotationFilter.kt92 if (filter.attributes.count() > existingAnnotation.attributes.count()) { in annotationsMatch()
95 for (attribute in filter.attributes) { in annotationsMatch()
110 val attributes: List<AnnotationAttribute> constant in com.android.tools.metalava.AnnotationFilterEntry
114 return attributes.firstOrNull { it.name == actualName } in findAttribute()
128 val attributes: List<AnnotationAttribute> = if (index == -1) { in fromSource() constant
135 return AnnotationFilterEntry(qualifiedName, attributes) in fromSource()
/tools/loganalysis/src/com/android/loganalysis/item/
DGenericTimingItem.java38 protected GenericTimingItem(Set<String> attributes) { in GenericTimingItem() argument
39 super(getAllAttributes(attributes)); in GenericTimingItem()
74 private static Set<String> getAllAttributes(Set<String> attributes) { in getAllAttributes() argument
76 allAttributes.addAll(attributes); in getAllAttributes()
DMiscKernelLogItem.java52 protected MiscKernelLogItem(Set<String> attributes) { in MiscKernelLogItem() argument
53 super(getAllAttributes(attributes)); in MiscKernelLogItem()
115 private static Set<String> getAllAttributes(Set<String> attributes) { in getAllAttributes() argument
117 allAttributes.addAll(attributes); in getAllAttributes()
DCompactMemInfoItem.java118 Map<String, Object> attributes = new HashMap<String, Object>(); in addPid() local
119 attributes.put(NAME_ATTR_KEY, name); in addPid()
120 attributes.put(TYPE_ATTR_KEY, type); in addPid()
121 attributes.put(PSS_ATTR_KEY, pss); in addPid()
122 attributes.put(SWAP_ATTR_KEY, swap); in addPid()
123 attributes.put(ACTIVITIES_ATTR_KEY, activities); in addPid()
124 mPids.put(pid, attributes); in addPid()
DMiscLogcatItem.java61 protected MiscLogcatItem(Set<String> attributes) { in MiscLogcatItem() argument
62 super(getAllAttributes(attributes)); in MiscLogcatItem()
166 private static Set<String> getAllAttributes(Set<String> attributes) { in getAllAttributes() argument
168 allAttributes.addAll(attributes); in getAllAttributes()
DGenericItem.java38 protected GenericItem(Set<String> allowedAttributes, Map<String, Object> attributes) { in GenericItem() argument
41 for (Map.Entry<String, Object> entry : attributes.entrySet()) { in GenericItem()
71 protected Map<String, Object> mergeAttributes(IItem other, Set<String> attributes) in mergeAttributes() argument
82 for (String attribute : attributes) { in mergeAttributes()
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DTextBackedAnnotationItem.kt34 private val attributes: List<AnnotationAttribute> constant
50 attributes = if (index == -1) {
61 override fun attributes(): List<AnnotationAttribute> = attributes method
DTextModifiers.kt64 val attributes = in <lambda>() constant
72 override fun attributes(): List<AnnotationAttribute> = attributes in <lambda>() method
/tools/metalava/src/test/java/com/android/tools/metalava/model/
DTextBackedAnnotationItemTest.kt46 assertTrue(annotation.attributes().isEmpty()) in supportsDocumentation()
57 assertEquals(2, annotation.attributes().size) in testIntRange()
75 assertEquals(1, annotation.attributes().size) in testIntDef()
/tools/tradefederation/core/src/com/android/tradefed/result/proto/
DProtoResultParser.java587 MultiMap<String, String> attributes = endInvocationContext.getAttributes(); in mergeInvocationContext() local
589 if (!attributes.containsKey(key.toString())) { in mergeInvocationContext()
592 List<String> values = attributes.get(key.toString()); in mergeInvocationContext()
593 attributes.remove(key.toString()); in mergeInvocationContext()
608 if (attributes.containsKey(TfObjectTracker.TF_OBJECTS_TRACKING_KEY)) { in mergeInvocationContext()
609 List<String> values = attributes.get(TfObjectTracker.TF_OBJECTS_TRACKING_KEY); in mergeInvocationContext()
624 attributes.remove(TfObjectTracker.TF_OBJECTS_TRACKING_KEY); in mergeInvocationContext()
626 receiverContext.addInvocationAttributes(attributes); in mergeInvocationContext()
/tools/apksig/src/main/java/com/android/apksig/internal/x509/
DRelativeDistinguishedName.java32 public List<AttributeTypeAndValue> attributes; field in RelativeDistinguishedName
/tools/test/connectivity/acts/tests/google/bt/sdp/
DSdpSetupTest.py133 attributes = [
142 result = self.dut.sdp_add_search(attributes, profile_id)
/tools/tradefederation/core/proto/
Dbuild_info.proto48 // The build attributes, as a key value
49 map<string, string> attributes = 4; field
Dconfiguration_description.proto23 // Representation of the metadata attributes in a similar way as MultiMap in
45 // A set of metadata representing some configuration attributes
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v3/
DV3SchemeSigner.java259 byte[] attributes = encodeAsLengthPrefixedElement(signedData.additionalAttributes); in encodeSignedData()
274 int payloadSize = digests.length + certs.length + 4 + 4 + attributes.length; in encodeSignedData()
282 result.put(attributes); in encodeSignedData()
/tools/acloud/
Dpylintrc7 too-many-instance-attributes,
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
DPsiParameterItem.kt62 return annotation.attributes().firstOrNull()?.value?.value()?.toString() in name()
158 return annotation.attributes().firstOrNull()?.value?.value()?.toString() in computeDefaultValue()

12