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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
BitShiftExpr.java 34 return join(getLeft().getUniqueKey(), mOp, getRight().getUniqueKey());
39 return getLeft().getResolvedType();
51 public Expr getLeft() {
62 .app("", getLeft().toCode())
69 return model.bitshift(getLeft().cloneToModel(model), mOp, getRight().cloneToModel(model));
79 return getLeft().toString() + ' ' + mOp + ' ' + getRight().toString();
ComparisonExpr.java 51 public Expr getLeft() {
67 .app("(", getLeft().toCode())
76 return model.comparison(mOp, getLeft().cloneToModel(model), getRight().cloneToModel(model));
86 return getLeft().toString() + ' ' + mOp + ' ' + getRight();
MathExpr.java 39 return join(getLeft().getUniqueKey(), mOp, getRight().getUniqueKey());
46 if (getLeft().getResolvedType().isString()
51 return modelAnalyzer.findCommonParentOf(getLeft().getResolvedType(),
60 public Expr getLeft() {
70 return new KCode().app("(", getLeft().toCode())
83 final Expr left = getLeft();
108 final Expr left = getLeft();
157 return model.math(getLeft().cloneToModel(model), mOp, getRight().cloneToModel(model));
162 return "(" + getLeft() + ") " + mOp + " (" + getRight() + ")";
  /frameworks/support/wear/tests/src/android/support/wear/widget/
WearableLinearLayoutManagerTest.java 98 assertEquals(136, child1.getLeft());
101 assertEquals(91, child2.getLeft(), 1);
104 assertEquals(58, child3.getLeft(), 1);
107 assertEquals(42, child4.getLeft(), 1);
111 assertEquals(43, child5.getLeft(), 1);
143 assertEquals(0, child1.getLeft());
146 assertEquals(0, child2.getLeft());
149 assertEquals(0, child3.getLeft());
152 assertEquals(0, child4.getLeft());
156 assertEquals(0, child5.getLeft());
    [all...]
  /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(); }
  /frameworks/support/design/src/android/support/design/widget/
ViewOffsetHelper.java 46 mLayoutLeft = mView.getLeft();
54 ViewCompat.offsetLeftAndRight(mView, mOffsetLeft - (mView.getLeft() - mLayoutLeft));
  /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...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
ViewBoundsCheckTest.java 78 return mParent.getLeft();
88 return view.getLeft();
126 view.getLeft());
141 view.getLeft());
157 view.getLeft());
173 view.getLeft());
189 view.getLeft());
205 view.getLeft());
220 view.getLeft());
235 view.getLeft());
    [all...]
  /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...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewWidgetImageView.java 42 getScrollX() + getRight() - getLeft() - getPaddingRight(),
  /packages/apps/Launcher3/src/com/android/launcher3/
ClickShadowView.java 96 float leftShift = view.getLeft() + viewParent.getLeft() - getLeft();
98 int iconWidth = view.getRight() - view.getLeft();
  /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...]
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
GridWidgetPrefetchTest.java 90 assertEquals(0, gridView.getLayoutManager().findViewByPosition(0).getLeft());
91 assertEquals(100, gridView.getLayoutManager().findViewByPosition(1).getLeft());
111 assertEquals(-75, gridView.getLayoutManager().findViewByPosition(4).getLeft());
112 assertEquals(25, gridView.getLayoutManager().findViewByPosition(5).getLeft());
113 assertEquals(125, gridView.getLayoutManager().findViewByPosition(6).getLeft());
141 assertEquals(50, gridView.getLayoutManager().findViewByPosition(0).getLeft());
142 assertEquals(-50, gridView.getLayoutManager().findViewByPosition(1).getLeft());
163 assertEquals(-75, gridView.getLayoutManager().findViewByPosition(6).getLeft());
164 assertEquals(25, gridView.getLayoutManager().findViewByPosition(5).getLeft());
165 assertEquals(125, gridView.getLayoutManager().findViewByPosition(4).getLeft());
    [all...]
  /development/samples/ApiDemos/tests/src/com/example/android/apis/view/
Focus2ActivityTest.java 78 mLeftButton.getRight() < mCenterButton.getLeft());
80 mCenterButton.getRight() < mRightButton.getLeft());
  /frameworks/support/percent/tests/java/android/support/percent/
PercentFrameTest.java 92 int childLeft = childToTest.getLeft();
111 int childLeft = childToTest.getLeft();
132 int childLeft = childToTest.getLeft();
169 int childLeft = childToTest.getLeft();
190 mPercentFrameLayout.layout(mPercentFrameLayout.getLeft(),
200 int childLeft = childToTest.getLeft();
232 mPercentFrameLayout.layout(mPercentFrameLayout.getLeft(),
237 int childLeft = childToTest.getLeft();
PercentRelativeRtlTest.java 124 mPercentRelativeLayout.layout(mPercentRelativeLayout.getLeft(),
143 final int childLeft = childToTest.getLeft();
175 final int childLeft = childToTest.getLeft();
204 final int childLeft = childToTest.getLeft();
238 final int childLeft = childToTest.getLeft();
273 final int childLeft = childToTest.getLeft();
292 rightChild.getLeft() - 0.1f * mContainerWidth, childRight);
  /frameworks/support/core-ui/tests/java/android/support/v4/testutils/
TestUtilsMatchers.java 120 if (view.getLeft() == 0) {
125 view.getLeft();
176 if (view.getLeft() == 0) {
181 view.getLeft();
209 final int viewLeft = view.getLeft();
  /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/swiftshader/third_party/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...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
ImmutableSet.h 62 ImutAVLTree *getLeft() const { return left; }
84 T = T->getLeft();
104 if (const ImutAVLTree* L = getLeft())
179 if (ImutAVLTree* L = getLeft())
195 unsigned HL = getLeft() ? getLeft()->validateTree() : 0;
206 assert((!getLeft() ||
207 ImutInfo::isLess(ImutInfo::KeyOfValue(getLeft()->getValue()),
324 uint32_t X = computeDigest(getLeft(), getRight(), getValue());
432 TreeTy* getLeft(TreeTy* T) const { return T->getLeft();
    [all...]

Completed in 482 milliseconds

1 2 3 4 5 6 7 8 91011>>