Home
last modified time | relevance | path

Searched refs:getLeft (Results 1 – 25 of 73) sorted by relevance

123

/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DExpressionEvaluator.java139 executeFunction("==", node.getLeft(), node.getRight()); in caseAEqExpression()
144 executeFunction("#==", node.getLeft(), node.getRight()); in caseANumericEqExpression()
149 executeFunction("!=", node.getLeft(), node.getRight()); in caseANeExpression()
154 executeFunction("#!=", node.getLeft(), node.getRight()); in caseANumericNeExpression()
159 executeFunction("<", node.getLeft(), node.getRight()); in caseALtExpression()
164 executeFunction(">", node.getLeft(), node.getRight()); in caseAGtExpression()
169 executeFunction("<=", node.getLeft(), node.getRight()); in caseALteExpression()
174 executeFunction(">=", node.getLeft(), node.getRight()); in caseAGteExpression()
179 executeFunction("&&", node.getLeft(), node.getRight()); in caseAAndExpression()
184 executeFunction("||", node.getLeft(), node.getRight()); in caseAOrExpression()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DDepthFirstAdapter.java1056 if(node.getLeft() != null) in caseACommaExpression()
1058 node.getLeft().apply(this); in caseACommaExpression()
1081 if(node.getLeft() != null) in caseAEqExpression()
1083 node.getLeft().apply(this); in caseAEqExpression()
1106 if(node.getLeft() != null) in caseANumericEqExpression()
1108 node.getLeft().apply(this); in caseANumericEqExpression()
1131 if(node.getLeft() != null) in caseANeExpression()
1133 node.getLeft().apply(this); in caseANeExpression()
1156 if(node.getLeft() != null) in caseANumericNeExpression()
1158 node.getLeft().apply(this); in caseANumericNeExpression()
[all …]
DReversedDepthFirstAdapter.java1067 if(node.getLeft() != null) in caseACommaExpression()
1069 node.getLeft().apply(this); in caseACommaExpression()
1092 if(node.getLeft() != null) in caseAEqExpression()
1094 node.getLeft().apply(this); in caseAEqExpression()
1117 if(node.getLeft() != null) in caseANumericEqExpression()
1119 node.getLeft().apply(this); in caseANumericEqExpression()
1142 if(node.getLeft() != null) in caseANeExpression()
1144 node.getLeft().apply(this); in caseANeExpression()
1167 if(node.getLeft() != null) in caseANumericNeExpression()
1169 node.getLeft().apply(this); in caseANumericNeExpression()
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
DPair.java49 return Objects.equal(getLeft(), other.getLeft()) in equals()
55 int hLeft = getLeft() == null ? 0 : getLeft().hashCode(); in hashCode()
65 public L getLeft() { in getLeft() method in Pair
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DExpressionTranslator.java226 JavaExpression left = cast(Type.STRING, node.getLeft()); in caseAEqExpression()
233 setResult(infix(Type.BOOLEAN, Type.INT, "==", node.getLeft(), node.getRight())); in caseANumericEqExpression()
238 JavaExpression left = cast(Type.STRING, node.getLeft()); in caseANeExpression()
245 setResult(infix(Type.BOOLEAN, Type.INT, "!=", node.getLeft(), node.getRight())); in caseANumericNeExpression()
250 setResult(infix(Type.BOOLEAN, Type.INT, "<", node.getLeft(), node.getRight())); in caseALtExpression()
255 setResult(infix(Type.BOOLEAN, Type.INT, ">", node.getLeft(), node.getRight())); in caseAGtExpression()
260 setResult(infix(Type.BOOLEAN, Type.INT, "<=", node.getLeft(), node.getRight())); in caseALteExpression()
265 setResult(infix(Type.BOOLEAN, Type.INT, ">=", node.getLeft(), node.getRight())); in caseAGteExpression()
270 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "&&", node.getLeft(), node.getRight())); in caseAAndExpression()
275 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "||", node.getLeft(), node.getRight())); in caseAOrExpression()
[all …]
/external/llvm/include/llvm/ADT/
DImmutableSet.h58 ImutAVLTree *getLeft() const { return left; } in getLeft() function
80 T = T->getLeft(); in find()
100 if (const ImutAVLTree* L = getLeft()) in size()
175 if (ImutAVLTree* L = getLeft()) in foreach()
191 unsigned HL = getLeft() ? getLeft()->validateTree() : 0; in validateTree()
202 assert((!getLeft() || in validateTree()
203 ImutInfo::isLess(ImutInfo::KeyOfValue(getLeft()->getValue()), in validateTree()
320 uint32_t X = computeDigest(getLeft(), getRight(), getValue()); in computeDigest()
427 TreeTy* getLeft(TreeTy* T) const { return T->getLeft(); } in getLeft() function
499 TreeTy *LL = getLeft(L); in balanceTree()
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DNewExpr.java58 public ASTList getClassName() { return (ASTList)getLeft(); } in getClassName()
60 public ASTList getArguments() { return (ASTList)getRight().getLeft(); } in getArguments()
69 return (ArrayInit)t.getLeft(); in getInitializer()
DCastExpr.java46 public ASTList getClassName() { return (ASTList)getLeft(); } in getClassName()
48 public ASTree getOprand() { return getRight().getLeft(); } in getOprand()
DExpr.java55 public ASTree oprand1() { return getLeft(); } in oprand1()
61 public ASTree oprand2() { return getRight().getLeft(); } in oprand2()
DFieldDecl.java25 public ASTList getModifiers() { return (ASTList)getLeft(); } in getModifiers()
DASTree.java27 public ASTree getLeft() { return null; } in getLeft() method in ASTree
DMethodDecl.java32 public ASTList getModifiers() { return (ASTList)getLeft(); } in getModifiers()
DPair.java44 public ASTree getLeft() { return left; } in getLeft() method in Pair
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
DTypeResolver.java80 PExpression lhs = node.getLeft(); in caseAAddExpression()
90 PExpression lhs = node.getLeft(); in caseAEqExpression()
100 PExpression lhs = node.getLeft(); in caseANeExpression()
/external/jmonkeyengine/engine/src/core/com/jme3/input/
DFlyByCamera.java257 Vector3f left = cam.getLeft(); in rotateCamera()
309 cam.getLeft(vel); in moveCamera()
332 rotateCamera(-value, cam.getLeft()); in onAnalog()
334 rotateCamera(value, cam.getLeft()); in onAnalog()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowTextView.java561 if (getLeft() != that.getLeft()) return false; in equals()
570 int result = getLeft(); in hashCode()
580 "left=" + getLeft() + in toString()
587 public int getLeft() { in getLeft() method in ShadowTextView.CompoundDrawables
/external/dexmaker/src/dx/java/com/android/dx/util/
DTwoColumnOutput.java70 twoOut.getLeft().write(s1); in toString()
136 public Writer getLeft() { in getLeft() method in TwoColumnOutput
/external/skia/include/views/animated/
DSkBorderView.h22 SkScalar getLeft() const { return fLeft; } in getLeft() function
/external/llvm/tools/llvm-diff/
DDiffConsumer.cpp198 Log.getLeft(I)->dump(); in logd()
203 Log.getLeft(I)->dump(); in logd()
DDiffLog.cpp51 Instruction *DiffLogBuilder::getLeft(unsigned I) const { return Diff[I].first; } in getLeft() function in DiffLogBuilder
DDiffLog.h74 Instruction *getLeft(unsigned I) const;
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
DListener.java85 public Vector3f getLeft(){ in getLeft() method in Listener
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
DANumericAddExpression.java42 public PExpression getLeft() in getLeft() method in ANumericAddExpression
DAAddExpression.java42 public PExpression getLeft() in getLeft() method in AAddExpression
DADivideExpression.java42 public PExpression getLeft() in getLeft() method in ADivideExpression

123