Home
last modified time | relevance | path

Searched refs:attributeMap (Results 1 – 13 of 13) sorted by relevance

/external/angle/src/libANGLE/
DConfig.cpp129 explicit ConfigSorter(const AttributeMap &attributeMap) in ConfigSorter() argument
136 scanForWantedComponents(attributeMap); in ConfigSorter()
185 static bool wantsComponent(const AttributeMap &attributeMap, EGLAttrib component) in wantsComponent() argument
190 EGLAttrib value = attributeMap.get(component, 0); in wantsComponent()
194 void scanForWantedComponents(const AttributeMap &attributeMap) in scanForWantedComponents() argument
196 mWantRed = wantsComponent(attributeMap, EGL_RED_SIZE); in scanForWantedComponents()
197 mWantGreen = wantsComponent(attributeMap, EGL_GREEN_SIZE); in scanForWantedComponents()
198 mWantBlue = wantsComponent(attributeMap, EGL_BLUE_SIZE); in scanForWantedComponents()
199 mWantAlpha = wantsComponent(attributeMap, EGL_ALPHA_SIZE); in scanForWantedComponents()
200 mWantLuminance = wantsComponent(attributeMap, EGL_LUMINANCE_SIZE); in scanForWantedComponents()
[all …]
DConfig.h100 std::vector<const Config *> filter(const AttributeMap &attributeMap) const;
/external/opencensus-java/exporters/trace/ocagent/src/test/java/io/opencensus/exporter/trace/ocagent/
DOcAgentNodeUtilsTest.java85 Map<String, String> attributeMap = OcAgentNodeUtils.getAttributeMap(null); in getAttributeMap_Null() local
86 assertThat(attributeMap).isEmpty(); in getAttributeMap_Null()
91 Map<String, String> attributeMap = OcAgentNodeUtils.getAttributeMap(AWS_RESOURCE); in getAttributeMap_AwsEc2Resource() local
92 assertThat(attributeMap) in getAttributeMap_AwsEc2Resource()
102 Map<String, String> attributeMap = OcAgentNodeUtils.getAttributeMap(GCE_RESOURCE); in getAttributeMap_GceResource() local
103 assertThat(attributeMap) in getAttributeMap_GceResource()
113 Map<String, String> attributeMap = OcAgentNodeUtils.getAttributeMap(GKE_RESOURCE); in getAttributeMap_GkeResource() local
114 assertThat(attributeMap) in getAttributeMap_GkeResource()
/external/opencensus-java/exporters/trace/zipkin/src/test/java/io/opencensus/exporter/trace/zipkin/
DZipkinExporterHandlerTest.java193 Map<String, AttributeValue> attributeMap = new HashMap<String, AttributeValue>(); in generateSpan_WithAttributes() local
194 attributeMap.put("string", AttributeValue.stringAttributeValue("string value")); in generateSpan_WithAttributes()
195 attributeMap.put("boolean", AttributeValue.booleanAttributeValue(false)); in generateSpan_WithAttributes()
196 attributeMap.put("long", AttributeValue.longAttributeValue(9999L)); in generateSpan_WithAttributes()
209 Attributes.create(attributeMap, 0 /* droppedAttributesCount */), in generateSpan_WithAttributes()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DBouncyCastleProvider.java313 public void addAttributes(String key, Map<String, String> attributeMap) in addAttributes() argument
315 for (Iterator it = attributeMap.keySet().iterator(); it.hasNext();) in addAttributes()
324 put(attributeKey, attributeMap.get(attributeName)); in addAttributes()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/
DBouncyCastleProvider.java318 public void addAttributes(String key, Map<String, String> attributeMap) in addAttributes() argument
320 for (Iterator it = attributeMap.keySet().iterator(); it.hasNext();) in addAttributes()
329 put(attributeKey, attributeMap.get(attributeName)); in addAttributes()
/external/vogar/src/vogar/
DXmlReportReader.java126 Map<String, String> attributeMap = new HashMap<String, String>(); in createAttributeMap() local
131 attributeMap.put(attributeName, attributeValue); in createAttributeMap()
133 return attributeMap; in createAttributeMap()
/external/cldr/tools/java/org/unicode/cldr/api/
DCldrPaths.java378 /* @Nullable */ Map<String, String> attributeMap, in processPathAttributes() argument
390 if (attributeMap != null && !attributeMap.isEmpty()) { in processPathAttributes()
392 attributeMap.entrySet().stream(), elementName, collectValueAttribute, dtdType) in processPathAttributes()
/external/opencensus-java/exporters/trace/instana/src/main/java/io/opencensus/exporter/trace/instana/
DInstanaExporterHandler.java157 Map<String, AttributeValue> attributeMap = span.getAttributes().getAttributeMap(); in convertToJson() local
158 if (attributeMap.size() > 0) { in convertToJson()
161 for (Entry<String, AttributeValue> entry : attributeMap.entrySet()) { in convertToJson()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
DConfigurableProvider.java54 void addAttributes(String key, Map<String, String> attributeMap); in addAttributes() argument
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/config/
DConfigurableProvider.java56 void addAttributes(String key, Map<String, String> attributeMap); in addAttributes() argument
/external/opencensus-java/api/src/main/java/io/opencensus/trace/export/
DSpanData.java408 Map<String, AttributeValue> attributeMap, int droppedAttributesCount) { in create() argument
414 Utils.checkNotNull(attributeMap, "attributeMap"))), in create()
/external/opencensus-java/exporters/trace/stackdriver/src/test/java/io/opencensus/exporter/trace/stackdriver/
DStackdriverV2ExporterHandlerProtoTest.java357 Map<String, AttributeValue> attributeMap = span.getAttributes().getAttributeMapMap(); in generateSpan_WithResourceLabels() local
358 assertThat(attributeMap.entrySet()).containsAllIn(AWS_RESOURCE_LABELS.entrySet()); in generateSpan_WithResourceLabels()