Searched refs:attributeMap (Results 1 – 2 of 2) sorted by relevance
/system/tools/xsdc/src/com/android/xsdc/ |
D | XsdHandler.java | 40 final Map<String, String> attributeMap; field in XsdHandler.State 46 State(String name, Map<String, String> attributeMap) { in State() argument 48 this.attributeMap = Collections.unmodifiableMap(attributeMap); in State() 118 Map<String, String> attributeMap = new HashMap<>(); in startElement() local 120 attributeMap.put(attributes.getLocalName(i), attributes.getValue(i)); in startElement() 123 stateStack.push(new State(localName, attributeMap)); in startElement() 209 stateStack.peek().deprecated = isDeprecated(state.attributeMap, state.tags, in endElement() 211 stateStack.peek().finalValue = isFinalValue(state.attributeMap, state.tags, in endElement() 213 stateStack.peek().nullability = getNullability(state.attributeMap, state.tags, in endElement() 271 String name = state.attributeMap.get("name"); in makeElement() [all …]
|
D | XmlSchema.java | 28 final private Map<String, XsdAttribute> attributeMap; field in XmlSchema 34 Map<String, XsdAttribute> attributeMap, in XmlSchema() argument 39 this.attributeMap = attributeMap; in XmlSchema() 54 return attributeMap; in getAttributeMap() 72 attributeMap.putAll(schema.getAttributeMap()); in include()
|