Home
last modified time | relevance | path

Searched refs:getLeft (Results 1 – 25 of 52) 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/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
497 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/webkit/Source/ThirdParty/ANGLE/src/compiler/
DOutputHLSL.cpp666 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 …]
DValidateLimitations.cpp78 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/chromium/chrome/browser/resources/net_internals/
Dresizableverticalsplitview.js103 this.leftSplit_ = (event.pageX - this.getLeft());
115 this.getLeft(), this.getTop(), this.getWidth(), this.getHeight());
Dview.js46 View.prototype.getLeft = function() { method in View
63 return this.getLeft() + this.getWidth();
/external/skia/include/views/
DSkBorderView.h29 SkScalar getLeft() const { return fLeft; } in getLeft() function
/external/llvm/tools/llvm-diff/
DDiffConsumer.cpp193 Log.getLeft(I)->dump(); in logd()
198 Log.getLeft(I)->dump(); in logd()
DDiffLog.cpp52 Instruction *DiffLogBuilder::getLeft(unsigned I) const { return Diff[I].first; } in getLeft() function in DiffLogBuilder
DDiffLog.h74 Instruction *getLeft(unsigned I) const;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
DALteExpression.java42 public PExpression getLeft() in getLeft() method in ALteExpression
DANumericAddExpression.java42 public PExpression getLeft() in getLeft() method in ANumericAddExpression
DANeExpression.java42 public PExpression getLeft() in getLeft() method in ANeExpression
DADivideExpression.java42 public PExpression getLeft() in getLeft() method in ADivideExpression

123