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

1 2 3 4 5 6 7 8

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
Pair.java 50 && Objects.equal(getRight(), other.getRight());
56 int hRight = getRight() == null ? 0 : getRight().hashCode();
69 public R getRight() {
  /external/javassist/src/main/javassist/compiler/ast/
CastExpr.java 48 public ASTree getOprand() { return getRight().getLeft(); }
50 public void setOprand(ASTree t) { getRight().setLeft(t); }
NewExpr.java 60 public ASTList getArguments() { return (ASTList)getRight().getLeft(); }
65 ASTree t = getRight().getRight();
ASTree.java 24 * and <code>getRight()</code> returns null.
29 public ASTree getRight() { return null; }
Expr.java 61 public ASTree oprand2() { return getRight().getLeft(); }
64 getRight().setLeft(expr);
Pair.java 46 public ASTree getRight() { return right; }
  /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...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
ExpressionTranslator.java 227 JavaExpression right = cast(Type.STRING, node.getRight());
233 setResult(infix(Type.BOOLEAN, Type.INT, "==", node.getLeft(), node.getRight()));
239 JavaExpression right = cast(Type.STRING, node.getRight());
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 23 SkScalar getRight() const { return fRight; }
  /external/skia/legacy/include/views/
SkBorderView.h 23 SkScalar getRight() const { return fRight; }
  /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 1060 if(node.getRight() != null)
1062 node.getRight().apply(this);
1085 if(node.getRight() != null)
1087 node.getRight().apply(this);
1110 if(node.getRight() != null)
1112 node.getRight().apply(this);
1135 if(node.getRight() != null)
1137 node.getRight().apply(this);
1160 if(node.getRight() != null)
1162 node.getRight().apply(this)
    [all...]
ReversedDepthFirstAdapter.java 1063 if(node.getRight() != null)
1065 node.getRight().apply(this);
1088 if(node.getRight() != null)
1090 node.getRight().apply(this);
1113 if(node.getRight() != null)
1115 node.getRight().apply(this);
1138 if(node.getRight() != null)
1140 node.getRight().apply(this);
1163 if(node.getRight() != null)
1165 node.getRight().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());
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 62 ImutAVLTree *getRight() const { return right; }
82 T = T->getRight();
91 ImutAVLTree *Right = T->getRight();
92 while (Right) { T = Right; Right = T->getRight(); }
102 if (const ImutAVLTree* R = getRight())
180 if (ImutAVLTree* R = getRight())
192 unsigned HR = getRight() ? getRight()->validateTree() : 0;
208 assert(!(getRight() ||
210 ImutInfo::KeyOfValue(getRight()->getValue()))) &
    [all...]
  /external/llvm/tools/llvm-diff/
DiffLog.h 75 Instruction *getRight(unsigned I) const;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/focus/
ListButtonsDiagonalAcrossItemsTest.java 64 mLeftButton.getRight()
68 mCenterButton.getRight()
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
TypeResolver.java 81 PExpression rhs = node.getRight();
91 PExpression rhs = node.getRight();
101 PExpression rhs = node.getRight();
  /cts/tests/tests/widget/src/android/widget/cts/
LinearLayoutTest.java 259 assertEquals(centerView.getLeft(), topView.getRight());
264 assertEquals(topView.getRight(), centerView.getLeft());
265 assertEquals(bottomView.getLeft(), centerView.getRight());
269 assertEquals(centerView.getRight(), bottomView.getLeft());
270 assertEquals(parent.getWidth(), bottomView.getRight());
316 assertEquals(leftView.getWidth(), leftView.getRight());
322 assertEquals(offset + centerView.getWidth(), centerView.getRight());
327 assertEquals(parent.getWidth(), rightView.getRight());
  /dalvik/dexgen/src/com/android/dexgen/util/
TwoColumnOutput.java 71 twoOut.getRight().write(s2);
145 public Writer getRight() {
  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 71 twoOut.getRight().write(s2);
145 public Writer getRight() {
  /external/dexmaker/src/dx/java/com/android/dx/util/
TwoColumnOutput.java 71 twoOut.getRight().write(s2);
145 public Writer getRight() {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TwoColumnOutput.java 75 twoOut.getRight().write(s2);
149 public Writer getRight() {
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
SkewableTextView.java 77 mTempRect.set(0, 0, getRight(), getBottom());

Completed in 268 milliseconds

1 2 3 4 5 6 7 8