Searched refs:getLeft (Results 1 - 25 of 97) sorted by relevance

1234

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
H A DPair.java49 return Objects.equal(getLeft(), other.getLeft())
55 int hLeft = getLeft() == null ? 0 : getLeft().hashCode();
65 public L getLeft() { method in class:Pair
/external/javassist/src/main/javassist/compiler/ast/
H A DCastExpr.java46 public ASTList getClassName() { return (ASTList)getLeft(); }
48 public ASTree getOprand() { return getRight().getLeft(); }
H A DFieldDecl.java25 public ASTList getModifiers() { return (ASTList)getLeft(); }
H A DNewExpr.java58 public ASTList getClassName() { return (ASTList)getLeft(); }
60 public ASTList getArguments() { return (ASTList)getRight().getLeft(); }
69 return (ArrayInit)t.getLeft();
H A DASTree.java23 * a binary tree. If the node is a leaf node, both <code>getLeft()</code>
27 public ASTree getLeft() { return null; } method in class:ASTree
H A DExpr.java55 public ASTree oprand1() { return getLeft(); }
61 public ASTree oprand2() { return getRight().getLeft(); }
H A DMethodDecl.java32 public ASTList getModifiers() { return (ASTList)getLeft(); }
H A DPair.java44 public ASTree getLeft() { return left; } method in class:Pair
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DExpressionEvaluator.java139 executeFunction("==", node.getLeft(), node.getRight());
144 executeFunction("#==", node.getLeft(), node.getRight());
149 executeFunction("!=", node.getLeft(), node.getRight());
154 executeFunction("#!=", node.getLeft(), node.getRight());
159 executeFunction("<", node.getLeft(), node.getRight());
164 executeFunction(">", node.getLeft(), node.getRight());
169 executeFunction("<=", node.getLeft(), node.getRight());
174 executeFunction(">=", node.getLeft(), node.getRight());
179 executeFunction("&&", node.getLeft(), node.getRight());
184 executeFunction("||", node.getLeft(), nod
[all...]
/external/chromium_org/third_party/angle_dx11/src/compiler/
H A DUnfoldShortCircuit.cpp47 node->getLeft()->traverse(this);
50 node->getLeft()->traverse(mOutputHLSL);
78 node->getLeft()->traverse(this);
81 node->getLeft()->traverse(mOutputHLSL);
H A DValidateLimitations.cpp110 validateOperation(node, node->getLeft());
123 if ((node->getLeft() != NULL) && (node->getRight() != NULL) &&
124 (node->getLeft()->getAsSymbolNode())) {
125 TIntermSymbol* symbol = node->getLeft()->getAsSymbolNode();
265 TIntermSymbol* symbol = declInit->getLeft()->getAsSymbolNode();
307 TIntermSymbol* symbol = binOp->getLeft()->getAsSymbolNode();
371 symbol = binOp->getLeft()->getAsSymbolNode();
503 TIntermTyped* operand = node->getLeft();
/external/chromium_org/third_party/skia/include/views/animated/
H A DSkBorderView.h22 SkScalar getLeft() const { return fLeft; } function in class:SkBorderView
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DExpressionTranslator.java226 JavaExpression left = cast(Type.STRING, node.getLeft());
233 setResult(infix(Type.BOOLEAN, Type.INT, "==", node.getLeft(), node.getRight()));
238 JavaExpression left = cast(Type.STRING, node.getLeft());
245 setResult(infix(Type.BOOLEAN, Type.INT, "!=", node.getLeft(), node.getRight()));
250 setResult(infix(Type.BOOLEAN, Type.INT, "<", node.getLeft(), node.getRight()));
255 setResult(infix(Type.BOOLEAN, Type.INT, ">", node.getLeft(), node.getRight()));
260 setResult(infix(Type.BOOLEAN, Type.INT, "<=", node.getLeft(), node.getRight()));
265 setResult(infix(Type.BOOLEAN, Type.INT, ">=", node.getLeft(), node.getRight()));
270 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "&&", node.getLeft(), node.getRight()));
275 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "||", node.getLeft(), nod
[all...]
/external/skia/include/views/animated/
H A DSkBorderView.h22 SkScalar getLeft() const { return fLeft; } function in class:SkBorderView
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
H A DDepthFirstAdapter.java1056 if(node.getLeft() != null)
1058 node.getLeft().apply(this);
1081 if(node.getLeft() != null)
1083 node.getLeft().apply(this);
1106 if(node.getLeft() != null)
1108 node.getLeft().apply(this);
1131 if(node.getLeft() != null)
1133 node.getLeft().apply(this);
1156 if(node.getLeft() != null)
1158 node.getLeft()
[all...]
H A DReversedDepthFirstAdapter.java1067 if(node.getLeft() != null)
1069 node.getLeft().apply(this);
1092 if(node.getLeft() != null)
1094 node.getLeft().apply(this);
1117 if(node.getLeft() != null)
1119 node.getLeft().apply(this);
1142 if(node.getLeft() != null)
1144 node.getLeft().apply(this);
1167 if(node.getLeft() != null)
1169 node.getLeft()
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h58 ImutAVLTree *getLeft() const { return left; } function in class:llvm::ImutAVLTree
80 T = T->getLeft();
100 if (const ImutAVLTree* L = getLeft())
175 if (ImutAVLTree* L = getLeft())
191 unsigned HL = getLeft() ? getLeft()->validateTree() : 0;
202 assert((!getLeft() ||
203 ImutInfo::isLess(ImutInfo::KeyOfValue(getLeft()->getValue()),
320 uint32_t X = computeDigest(getLeft(), getRight(), getValue());
427 TreeTy* getLeft(TreeT function in class:llvm::ImutAVLFactory
[all...]
/external/chromium_org/third_party/angle_dx11/src/third_party/compiler/
H A DArrayBoundsClamper.cpp54 TIntermTyped* left = node->getLeft();
/external/chromium/chrome/browser/resources/net_internals/
H A Dresizableverticalsplitview.js103 this.leftSplit_ = (event.pageX - this.getLeft());
115 this.getLeft(), this.getTop(), this.getWidth(), this.getHeight());
H A Dview.js46 View.prototype.getLeft = function() {
63 return this.getLeft() + this.getWidth();
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DTypeResolver.java80 PExpression lhs = node.getLeft();
90 PExpression lhs = node.getLeft();
100 PExpression lhs = node.getLeft();
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DTwoColumnOutput.java70 twoOut.getLeft().write(s1);
136 public Writer getLeft() { method in class:TwoColumnOutput
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DTwoColumnOutput.java74 twoOut.getLeft().write(s1);
140 public Writer getLeft() { method in class:TwoColumnOutput
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dresizable_vertical_split_view.js180 this.leftSplit_ = (pageX - this.getLeft());
190 this.getLeft(), this.getTop(), this.getWidth(), this.getHeight());
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DListener.java85 public Vector3f getLeft(){ method in class:Listener

Completed in 643 milliseconds

1234