Searched refs:getRight (Results 1 - 25 of 54) sorted by relevance

123

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
H A DPair.java50 && Objects.equal(getRight(), other.getRight());
56 int hRight = getRight() == null ? 0 : getRight().hashCode();
69 public R getRight() { method in class:Pair
/external/javassist/src/main/javassist/compiler/ast/
H A DCastExpr.java48 public ASTree getOprand() { return getRight().getLeft(); }
50 public void setOprand(ASTree t) { getRight().setLeft(t); }
H A DNewExpr.java60 public ASTList getArguments() { return (ASTList)getRight().getLeft(); }
65 ASTree t = getRight().getRight();
H A DASTree.java24 * and <code>getRight()</code> returns null.
29 public ASTree getRight() { return null; } method in class:ASTree
H A DExpr.java61 public ASTree oprand2() { return getRight().getLeft(); }
64 getRight().setLeft(expr);
H A DPair.java46 public ASTree getRight() { return right; } method in class:Pair
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DExpressionEvaluator.java139 executeFunction("==", node.getLeft(), node.getRight());
144 executeFunction("#==", node.getLeft(), node.getRight());
149 executeFunction("!=", node.getLeft(), node.getRight());
154 executeFunction("#!=", node.getLeft(), node.getRight());
159 executeFunction("<", node.getLeft(), node.getRight());
164 executeFunction(">", node.getLeft(), node.getRight());
169 executeFunction("<=", node.getLeft(), node.getRight());
174 executeFunction(">=", node.getLeft(), node.getRight());
179 executeFunction("&&", node.getLeft(), node.getRight());
184 executeFunction("||", node.getLeft(), node.getRight());
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DExpressionTranslator.java227 JavaExpression right = cast(Type.STRING, node.getRight());
233 setResult(infix(Type.BOOLEAN, Type.INT, "==", node.getLeft(), node.getRight()));
239 JavaExpression right = cast(Type.STRING, node.getRight());
245 setResult(infix(Type.BOOLEAN, Type.INT, "!=", node.getLeft(), node.getRight()));
250 setResult(infix(Type.BOOLEAN, Type.INT, "<", node.getLeft(), node.getRight()));
255 setResult(infix(Type.BOOLEAN, Type.INT, ">", node.getLeft(), node.getRight()));
260 setResult(infix(Type.BOOLEAN, Type.INT, "<=", node.getLeft(), node.getRight()));
265 setResult(infix(Type.BOOLEAN, Type.INT, ">=", node.getLeft(), node.getRight()));
270 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "&&", node.getLeft(), node.getRight()));
275 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "||", node.getLeft(), node.getRight()));
[all...]
/external/skia/include/views/
H A DSkBorderView.h23 SkScalar getRight() const { return fRight; } function in class:SkBorderView
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
H A DDepthFirstAdapter.java1060 if(node.getRight() != null)
1062 node.getRight().apply(this);
1085 if(node.getRight() != null)
1087 node.getRight().apply(this);
1110 if(node.getRight() != null)
1112 node.getRight().apply(this);
1135 if(node.getRight() != null)
1137 node.getRight().apply(this);
1160 if(node.getRight() != null)
1162 node.getRight()
[all...]
H A DReversedDepthFirstAdapter.java1063 if(node.getRight() != null)
1065 node.getRight().apply(this);
1088 if(node.getRight() != null)
1090 node.getRight().apply(this);
1113 if(node.getRight() != null)
1115 node.getRight().apply(this);
1138 if(node.getRight() != null)
1140 node.getRight().apply(this);
1163 if(node.getRight() != null)
1165 node.getRight()
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h63 ImutAVLTree *getRight() const { return right; } function in class:llvm::ImutAVLTree
83 T = T->getRight();
92 ImutAVLTree *Right = T->getRight();
93 while (Right) { T = right; right = T->getRight(); }
103 if (const ImutAVLTree* R = getRight())
181 if (ImutAVLTree* R = getRight())
193 unsigned HR = getRight() ? getRight()->validateTree() : 0;
209 assert(!(getRight() ||
211 ImutInfo::KeyOfValue(getRight()
429 TreeTy* getRight(TreeTy* T) const { return T->getRight(); } function in class:llvm::ImutAVLFactory
[all...]
/external/chromium/chrome/browser/resources/net_internals/
H A Dresizableverticalsplitview.js71 this.sizerView_.setGeometry(this.leftView_.getRight(), top,
73 this.rightView_.setGeometry(this.sizerView_.getRight(), top,
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DTypeResolver.java81 PExpression rhs = node.getRight();
91 PExpression rhs = node.getRight();
101 PExpression rhs = node.getRight();
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DTwoColumnOutput.java71 twoOut.getRight().write(s2);
145 public Writer getRight() { method in class:TwoColumnOutput
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DTwoColumnOutput.java75 twoOut.getRight().write(s2);
149 public Writer getRight() { method in class:TwoColumnOutput
/external/llvm/tools/llvm-diff/
H A DDiffLog.cpp53 Instruction *DiffLogBuilder::getRight(unsigned I) const { return Diff[I].second; } function in class:DiffLogBuilder
H A DDiffLog.h75 Instruction *getRight(unsigned I) const;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAAddExpression.java67 public PExpression getRight() method in class:AAddExpression
H A DAAndExpression.java67 public PExpression getRight() method in class:AAndExpression
H A DACommaExpression.java67 public PExpression getRight() method in class:ACommaExpression
H A DADivideExpression.java67 public PExpression getRight() method in class:ADivideExpression
H A DAEqExpression.java67 public PExpression getRight() method in class:AEqExpression
H A DAGtExpression.java67 public PExpression getRight() method in class:AGtExpression
H A DAGteExpression.java67 public PExpression getRight() method in class:AGteExpression

Completed in 703 milliseconds

123