/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/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/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/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 | 59 ImutAVLTree *getLeft() const { return left; } in getLeft() function 81 T = T->getLeft(); in find() 101 if (const ImutAVLTree* L = getLeft()) in size() 176 if (ImutAVLTree* L = getLeft()) in foreach() 192 unsigned HL = getLeft() ? getLeft()->validateTree() : 0; in validateTree() 203 assert((!getLeft() || in validateTree() 204 ImutInfo::isLess(ImutInfo::KeyOfValue(getLeft()->getValue()), in validateTree() 321 uint32_t X = computeDigest(getLeft(), getRight(), getValue()); in computeDigest() 428 TreeTy* getLeft(TreeTy* T) const { return T->getLeft(); } in getLeft() function 503 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/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
D | OutputHLSL.cpp | 666 TIntermSymbol *symbolNode = node->getLeft()->getAsSymbolNode(); in visitBinary() 704 node->getLeft()->traverse(this); in visitBinary() 720 node->getLeft()->traverse(this); in visitBinary() 781 if (node->getLeft()->isScalar()) in visitBinary() 792 else if (node->getLeft()->getBasicType() == EbtStruct) in visitBinary() 803 const TTypeList *fields = node->getLeft()->getType().getStruct(); in visitBinary() 809 node->getLeft()->traverse(this); in visitBinary() 826 if (node->getLeft()->isMatrix()) in visitBinary() 828 switch (node->getLeft()->getNominalSize()) in visitBinary() 836 else if (node->getLeft()->isVector()) in visitBinary() [all …]
|
D | ValidateLimitations.cpp | 78 validateOperation(node, node->getLeft()); in visitBinary() 221 TIntermSymbol* symbol = declInit->getLeft()->getAsSymbolNode(); in validateForLoopInit() 263 TIntermSymbol* symbol = binOp->getLeft()->getAsSymbolNode(); in validateForLoopCond() 327 symbol = binOp->getLeft()->getAsSymbolNode(); in validateForLoopExpr() 459 TIntermTyped* operand = node->getLeft(); in validateIndexing()
|
/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/chromium/chrome/browser/resources/net_internals/ |
D | resizableverticalsplitview.js | 103 this.leftSplit_ = (event.pageX - this.getLeft()); 115 this.getLeft(), this.getTop(), this.getWidth(), this.getHeight());
|
D | view.js | 46 View.prototype.getLeft = function() { method in View 63 return this.getLeft() + this.getWidth();
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
D | TwoColumnOutput.java | 74 twoOut.getLeft().write(s1); in toString() 140 public Writer getLeft() { in getLeft() method in TwoColumnOutput
|
/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/ |
D | SkBorderView.h | 22 SkScalar getLeft() const { return fLeft; } in getLeft() function
|
/external/llvm/tools/llvm-diff/ |
D | DiffConsumer.cpp | 199 Log.getLeft(I)->dump(); in logd() 204 Log.getLeft(I)->dump(); in logd()
|
D | DiffLog.cpp | 52 Instruction *DiffLogBuilder::getLeft(unsigned I) const { return Diff[I].first; } in getLeft() function in DiffLogBuilder
|
D | DiffLog.h | 74 Instruction *getLeft(unsigned I) const;
|