/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
D | ExpressionEvaluator.java | 139 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/ |
D | DepthFirstAdapter.java | 1056 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 …]
|
D | ReversedDepthFirstAdapter.java | 1067 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/ |
D | Pair.java | 49 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/ |
D | ExpressionTranslator.java | 226 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/ |
D | ImmutableSet.h | 58 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/ |
D | NewExpr.java | 58 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()
|
D | CastExpr.java | 46 public ASTList getClassName() { return (ASTList)getLeft(); } in getClassName() 48 public ASTree getOprand() { return getRight().getLeft(); } in getOprand()
|
D | Expr.java | 55 public ASTree oprand1() { return getLeft(); } in oprand1() 61 public ASTree oprand2() { return getRight().getLeft(); } in oprand2()
|
D | FieldDecl.java | 25 public ASTList getModifiers() { return (ASTList)getLeft(); } in getModifiers()
|
D | ASTree.java | 27 public ASTree getLeft() { return null; } in getLeft() method in ASTree
|
D | MethodDecl.java | 32 public ASTList getModifiers() { return (ASTList)getLeft(); } in getModifiers()
|
D | Pair.java | 44 public ASTree getLeft() { return left; } in getLeft() method in Pair
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
D | TypeResolver.java | 80 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/ |
D | FlyByCamera.java | 257 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/ |
D | ShadowTextView.java | 561 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/ |
D | TwoColumnOutput.java | 70 twoOut.getLeft().write(s1); in toString() 136 public Writer getLeft() { in getLeft() method in TwoColumnOutput
|
/external/skia/include/views/animated/ |
D | SkBorderView.h | 22 SkScalar getLeft() const { return fLeft; } in getLeft() function
|
/external/llvm/tools/llvm-diff/ |
D | DiffConsumer.cpp | 198 Log.getLeft(I)->dump(); in logd() 203 Log.getLeft(I)->dump(); in logd()
|
D | DiffLog.cpp | 51 Instruction *DiffLogBuilder::getLeft(unsigned I) const { return Diff[I].first; } in getLeft() function in DiffLogBuilder
|
D | DiffLog.h | 74 Instruction *getLeft(unsigned I) const;
|
/external/jmonkeyengine/engine/src/core/com/jme3/audio/ |
D | Listener.java | 85 public Vector3f getLeft(){ in getLeft() method in Listener
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
D | ANumericAddExpression.java | 42 public PExpression getLeft() in getLeft() method in ANumericAddExpression
|
D | AAddExpression.java | 42 public PExpression getLeft() in getLeft() method in AAddExpression
|
D | ADivideExpression.java | 42 public PExpression getLeft() in getLeft() method in ADivideExpression
|