Searched refs:getChild (Results 1 - 25 of 128) sorted by relevance

123456

/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/digested/
H A DDListPattern.java53 return getChild().isNullable();
H A DDOneOrMorePattern.java53 return getChild().isNullable();
H A DDMixedPattern.java53 return getChild().isNullable();
H A DDUnaryPattern.java54 public DPattern getChild() { method in class:DUnaryPattern
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/tree/
H A DSimpleTreeNode.java34 public SimpleTreeNode getChild(int index); method in interface:SimpleTreeNode
H A DFloatTreeNodeAdapter.java47 public SimpleTreeNode getChild(int index) { method in class:FloatTreeNodeAdapter
H A DDoubleTreeNodeAdapter.java47 public SimpleTreeNode getChild(int index) { method in class:DoubleTreeNodeAdapter
H A DBooleanTreeNodeAdapter.java47 public SimpleTreeNode getChild(int index) { method in class:BooleanTreeNodeAdapter
H A DCharTreeNodeAdapter.java47 public SimpleTreeNode getChild(int index) { method in class:CharTreeNodeAdapter
/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/
H A DDeclaration.java36 return getChild(0).complexity();
H A DBinaryOperator.java37 IRNode leftOperand = getChild(Order.LEFT.ordinal());
38 IRNode rightOperand = getChild(Order.RIGHT.ordinal());
H A DSwitch.java41 IRNode switchExp = getChild(0);
44 complexity += getChild(i).complexity();
H A DInitialization.java39 return getChild(0).complexity() + 1;
H A DCastOperator.java37 return getChild(0).complexity() + 1;
H A DStatement.java39 return getChild(0).complexity();
H A DThrow.java45 return getChild(0);
H A DNonStaticMemberVariable.java37 return getChild(0).complexity();
H A DIf.java46 IRNode condition = getChild(IfPart.CONDITION.ordinal());
47 IRNode thenBlock = getChild(IfPart.THEN.ordinal());
48 IRNode elseBlock = getChild(IfPart.ELSE.ordinal());
H A DTernaryOperator.java46 IRNode conditionalExp = getChild(TernaryPart.CONDITION.ordinal());
47 IRNode trueBranch = getChild(TernaryPart.TRUE.ordinal());
48 IRNode falseBranch = getChild(TernaryPart.FALSE.ordinal());
/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/loops/
H A DFor.java78 IRNode header = getChild(ForPart.HEADER.ordinal());
79 IRNode statement1 = getChild(ForPart.STATEMENT1.ordinal());
80 IRNode statement2 = getChild(ForPart.STATEMENT2.ordinal());
81 IRNode body1 = getChild(ForPart.BODY1.ordinal());
82 IRNode body2 = getChild(ForPart.BODY2.ordinal());
83 IRNode body3 = getChild(ForPart.BODY3.ordinal());
/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/functions/
H A DFunctionRedefinition.java46 IRNode body = getChild(0);
47 IRNode ret = getChild(1);
/openjdk9/jdk/test/javax/xml/jaxp/testng/validation/jdk8037819/
H A DIdentityConstraintCheckingTest.java115 PSVIElementNSImpl child = super.getChild(1);
123 child = super.getChild(2);
131 child = super.getChild(3);
140 child = super.getChild(4);
160 PSVIElementNSImpl child = super.getChild(1);
167 child = super.getChild(2);
174 child = super.getChild(3);
181 child = super.getChild(4);
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/tree/
H A DTreeModel.java40 * In other words, if <code>getChild</code> for a given parent returns
86 public Object getChild(Object parent, int index); method in interface:TreeModel
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/ast/
H A DNode.java40 protected Node getChild() { method in class:Node
47 //if (getChild() != null) getChild().parent = with;
48 //if (with.getChild() != null) with.getChild().parent = this;
50 //tmp = getChild();
51 //setChild(with.getChild());
69 if (!set.contains(this) && getChild() != null) {
71 if (getChild().parent != this) {
72 warnings.warn("broken link to child: " + this.getAddressName() + " -> " + getChild()
[all...]
/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DJavaCodeVisitor.java258 IRNode array = node.getChild(0);
276 IRNode array = node.getChild(0);
294 IRNode left = node.getChild(Operator.Order.LEFT.ordinal());
295 IRNode right = node.getChild(Operator.Order.RIGHT.ordinal());
343 + expressionToJavaCode(node, node.getChild(0), Operator.Order.LEFT);
365 IRNode body = node.getChild(0);
401 return vi.type.accept(this) + " " + vi.name + " = " + node.getChild(0).accept(this)+ ";";
406 return node.getChild(0).accept(this);
411 return node.getChild(0).accept(this)+ ";";
416 IRNode header = node.getChild(DoWhil
[all...]

Completed in 245 milliseconds

123456