HomeSort by relevance Sort by last modified time
    Searched refs:getLeft (Results 1 - 25 of 415) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
MathExpr.java 33 return join(getLeft().getUniqueKey(), mOp, getRight().getUniqueKey());
40 if (getLeft().getResolvedType().isString()
45 return modelAnalyzer.findCommonParentOf(getLeft().getResolvedType(),
58 public Expr getLeft() {
BitShiftExpr.java 33 return join(getLeft().getUniqueKey(), mOp, getRight().getUniqueKey());
38 return getLeft().getResolvedType();
50 public Expr getLeft() {
ComparisonExpr.java 50 public Expr getLeft() {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
Pair.java 49 return Objects.equal(getLeft(), other.getLeft())
55 int hLeft = getLeft() == null ? 0 : getLeft().hashCode();
65 public L getLeft() {
  /external/javassist/src/main/javassist/compiler/ast/
CastExpr.java 46 public ASTList getClassName() { return (ASTList)getLeft(); }
48 public ASTree getOprand() { return getRight().getLeft(); }
FieldDecl.java 25 public ASTList getModifiers() { return (ASTList)getLeft(); }
NewExpr.java 58 public ASTList getClassName() { return (ASTList)getLeft(); }
60 public ASTList getArguments() { return (ASTList)getRight().getLeft(); }
69 return (ArrayInit)t.getLeft();
ASTree.java 23 * a binary tree. If the node is a leaf node, both <code>getLeft()</code>
27 public ASTree getLeft() { return null; }
Expr.java 55 public ASTree oprand1() { return getLeft(); }
61 public ASTree oprand2() { return getRight().getLeft(); }
MethodDecl.java 32 public ASTList getModifiers() { return (ASTList)getLeft(); }
Pair.java 44 public ASTree getLeft() { return left; }
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
ExpressionEvaluator.java 139 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(), node.getRight())
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
ClickShadowView.java 92 float leftShift = view.getLeft() + viewParent.getLeft() - getLeft();
94 int iconWidth = view.getRight() - view.getLeft();
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
ExpressionTranslator.java 226 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(), node.getRight()))
    [all...]
  /external/skia/include/views/animated/
SkBorderView.h 22 SkScalar getLeft() const { return fLeft; }
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewWidgetImageView.java 42 getScrollX() + getRight() - getLeft() - getPaddingRight(),
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DepthFirstAdapter.java 1056 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().apply(this)
    [all...]
ReversedDepthFirstAdapter.java 1067 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().apply(this)
    [all...]
  /development/samples/ApiDemos/tests/src/com/example/android/apis/view/
Focus2ActivityTest.java 78 mLeftButton.getRight() < mCenterButton.getLeft());
80 mCenterButton.getRight() < mRightButton.getLeft());
Focus2AndroidTest.java 95 mLeftButton.getRight() < mCenterButton.getLeft());
97 mCenterButton.getRight() < mRightButton.getLeft());
  /frameworks/support/design/src/android/support/design/widget/
ViewOffsetHelper.java 48 mLayoutLeft = mView.getLeft();
56 ViewCompat.offsetLeftAndRight(mView, mOffsetLeft - (mView.getLeft() - mLayoutLeft));
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 58 ImutAVLTree *getLeft() const { return left; }
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(TreeTy* T) const { return T->getLeft();
    [all...]
  /external/llvm/tools/llvm-diff/
DiffLog.h 74 Instruction *getLeft(unsigned I) const;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/focus/
ListButtonsDiagonalAcrossItemsTest.java 65 < mCenterButton.getLeft());
69 < mRightButton.getLeft());
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisible.java 61 rect.set(0, 0, childToMakeVisible.getLeft(), childToMakeVisible.getHeight());
77 rect.set(0, 0, childToMakeVisible.getLeft(), childToMakeVisible.getHeight());

Completed in 466 milliseconds

1 2 3 4 5 6 7 8 91011>>