Home
last modified time | relevance | path

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

1234

/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/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/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
501 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()
/external/chromium_org/third_party/angle/src/compiler/
DUnfoldShortCircuit.cpp55 node->getLeft()->traverse(this); in visitBinary()
58 node->getLeft()->traverse(mOutputHLSL); in visitBinary()
86 node->getLeft()->traverse(this); in visitBinary()
89 node->getLeft()->traverse(mOutputHLSL); in visitBinary()
DValidateLimitations.cpp110 validateOperation(node, node->getLeft()); in visitBinary()
123 if ((node->getLeft() != NULL) && (node->getRight() != NULL) && in visitBinary()
124 (node->getLeft()->getAsSymbolNode())) { in visitBinary()
125 TIntermSymbol* symbol = node->getLeft()->getAsSymbolNode(); in visitBinary()
265 TIntermSymbol* symbol = declInit->getLeft()->getAsSymbolNode(); in validateForLoopInit()
307 TIntermSymbol* symbol = binOp->getLeft()->getAsSymbolNode(); in validateForLoopCond()
371 symbol = binOp->getLeft()->getAsSymbolNode(); in validateForLoopExpr()
503 TIntermTyped* operand = node->getLeft(); in validateIndexing()
DUnfoldShortCircuitAST.cpp43 replacement = UnfoldOR(node->getLeft(), node->getRight()); in visitBinary()
46 replacement = UnfoldAND(node->getLeft(), node->getRight()); in visitBinary()
DForLoopUnroll.cpp28 ASSERT(declInit->getLeft()); in visitLoop()
29 TIntermSymbol* symbol = declInit->getLeft()->getAsSymbolNode(); in visitLoop()
55 TIntermSymbol* symbol = declInit->getLeft()->getAsSymbolNode(); in FillLoopIndexInfo()
DOutputHLSL.cpp1124 TIntermSymbol *symbolNode = node->getLeft()->getAsSymbolNode(); in visitBinary()
1162 node->getLeft()->traverse(this); in visitBinary()
1178 node->getLeft()->traverse(this); in visitBinary()
1192 const TStructure* structure = node->getLeft()->getType().getStruct(); in visitBinary()
1195 out << "." + decorateField(field->name(), node->getLeft()->getType()); in visitBinary()
1242 if (node->getLeft()->isScalar()) in visitBinary()
1253 else if (node->getLeft()->getBasicType() == EbtStruct) in visitBinary()
1264 const TFieldList &fields = node->getLeft()->getType().getStruct()->fields(); in visitBinary()
1270 node->getLeft()->traverse(this); in visitBinary()
1271 out << "." + decorateField(field->name(), node->getLeft()->getType()) + " == "; in visitBinary()
[all …]
/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/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/chromium_org/third_party/angle/src/compiler/depgraph/
DDependencyGraphBuilder.cpp109 TIntermTyped* intermLeft = intermAssignment->getLeft(); in visitAssignment()
149 if (TIntermTyped* intermLeft = intermLogicalOp->getLeft()) { in visitLogicalOp()
167 if (TIntermTyped* intermLeft = intermBinary->getLeft()) in visitBinaryChildren()
/external/chromium_org/chrome/browser/resources/net_internals/
Dresizable_vertical_split_view.js180 this.leftSplit_ = (pageX - this.getLeft());
190 this.getLeft(), this.getTop(), this.getWidth(), this.getHeight());
Dview.js51 getLeft: function() { method in View
68 return this.getLeft() + this.getWidth();
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DTwoColumnOutput.java74 twoOut.getLeft().write(s1); in toString()
140 public Writer getLeft() { in getLeft() method in TwoColumnOutput
/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/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

1234