Home
last modified time | relevance | path

Searched refs:XsdUnion (Results 1 – 4 of 4) sorted by relevance

/system/tools/xsdc/src/com/android/xsdc/tag/
DXsdUnion.java24 public class XsdUnion extends XsdSimpleType { class
27 public XsdUnion(String name, List<XsdType> memberTypes) throws XsdParserException { in XsdUnion() method in XsdUnion
/system/tools/xsdc/src/com/android/xsdc/
DXsdHandler.java440 } else if (tag instanceof XsdUnion) { in makeSimpleType()
441 type = new XsdUnion(name, ((XsdUnion) tag).getMemberTypes()); in makeSimpleType()
463 private XsdUnion makeSimpleTypeUnion(State state) throws XsdParserException { in makeSimpleTypeUnion()
475 return setDeprecated(new XsdUnion(null, memberTypes), state.deprecated); in makeSimpleTypeUnion()
/system/tools/xsdc/src/com/android/xsdc/java/
DJavaCodeGenerator.java531 } else if (simpleType instanceof XsdUnion) { in parseSimpleTypeValue()
535 XsdUnion union = (XsdUnion) simpleType; in parseSimpleTypeValue()
/system/tools/xsdc/src/com/android/xsdc/cpp/
DCppCodeGenerator.java599 } else if (simpleType instanceof XsdUnion) { in parseSimpleTypeValue()
603 XsdUnion union = (XsdUnion) simpleType; in parseSimpleTypeValue()