Searched refs:getAttr (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DCFType.java39 super(node, getAttr(node, "name"), parent);
40 getTypeIdFunc = getAttr(node, "gettypeid_func");
41 tollfree = getAttr(node, "tollfree");
H A DNativeEnum.java42 super(node, typeForEnum(getAttr(node, "name"),
43 getAttr(node, "value"), getAttr(node, "value64"),
44 getAttr(node, "le_value"), getAttr(node, "be_value"),
45 getAttr(node, "ignore")), parent);
46 this.value = getAttr(node, "value");
47 this.value64 = getAttr(node, "value64");
48 this.le_value = getAttr(node, "le_value");
49 this.be_value = getAttr(nod
[all...]
H A DStringConstant.java34 this.value = getAttr(node, "value");
H A DMethod.java41 super(node, getAttr(node, "selector"), fw);
43 this.isClassMethod = "true".equals(getAttr(node, "class_method"));
44 this.ignore = "true".equals(getAttr(node, "ignore"));
45 this.suggestion = getAttr(node, "suggestion");
H A DElementWType.java51 final String type32 = getAttr(node, "type");
52 final String type64 = getAttr(node, "type64");
59 this(node, getAttr(node, "declared_type"), parent);
H A DOpaque.java36 super(node, getAttr(node, "name"), parent);
H A DFunction.java39 this(node, getAttr(node, "name"), parent);
45 this.variadic = "true".equals(getAttr(node, "variadic"));
H A DElement.java52 this(getAttr(node, "name"), parent);
55 public static String getAttr(final Node node, final String key) { method in class:Element
H A DStruct.java64 super(node, getAttr(node, "name"), parent);
H A DFramework.java92 super(getAttr(node, "path").replaceFirst("^.*/([^/]+)\\.framework$", "$1"), parent);
93 this.path = getAttr(node, "path");
H A DClazz.java73 final String selName = Element.getAttr(node, "selector");
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DInstructionAssembler.java70 elemToIndexMap[i] = (ins.getAttr(pcAttrName) != null ? id : -1);
72 String lab = ins.getAttr("pc");
78 assert (ins.getAttr(pcAttrName) != null
170 String newLab = labels.get(ins.getAttr("lab"));
178 newLab = labels.get(cas.getAttr("lab"));
395 opnd2 = ClassSyntax.computeInterfaceNum(ins.getAttr("val"));
415 String val = ins.getAttr("val");
H A DClassWriter.java288 int flags = parseFlags(klass.getAttr("flags"));
291 cpRef(CONSTANT_Class, klass.getAttr("name"));
292 cpRef(CONSTANT_Class, klass.getAttr("super"));
296 cpRef(CONSTANT_Class, e.getAttr("name"));
310 u2(parseFlags(member.getAttr("flags")));
311 cpRef(CONSTANT_Utf8, member.getAttr("name"));
312 cpRef(CONSTANT_Utf8, member.getAttr("type"));
453 assert (aval.getAttr("tag") != null) : aval;
494 String sig = currentMember.getAttr("type");
530 attrValue = aval.getAttr(nextAttrNam
[all...]
H A DXMLKit.java109 * String getAttr(int i)/set
112 * String getAttr(String key)/set
118 * String getAttr(String key, String dflt=null)
704 String v0 = e0.getAttr(k);
705 String v1 = e1.getAttr(k);
1310 String old = setAttr(e.getAttrName(k), e.getAttr(k));
1744 public String getAttr(String key) { method in class:XMLKit.Element
1745 return getAttr(key, null);
1748 public String getAttr(String key, String dflt) { method in class:XMLKit.Element
1754 return convertToList(getAttr(ke
1789 public String getAttr(int k) { method in class:XMLKit.Element
[all...]
H A DClassReader.java586 attachAttrTo(x, aval.getAttrName(i), aval.getAttr(i));
593 String aval0 = x.getAttr(aname);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSAttributeChecker.java1006 if (DOMUtil.getAttr(element, SchemaSymbols.ATT_REF) != null)
1011 if (DOMUtil.getAttr(element, SchemaSymbols.ATT_REF) != null)
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDOMUtil.java776 public static Attr getAttr(Element elem, String name) { method in class:DOMUtil
778 } // getAttr(Element, String):Attr
809 } // getAttr(Element, String):Attr

Completed in 92 milliseconds