/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/ |
MathExpr.java | 34 return addTwoWay(join(getLeft().getUniqueKey(), mOp, getRight().getUniqueKey())); 41 if (getLeft().getResolvedType().isString() 46 return modelAnalyzer.findCommonParentOf(getLeft().getResolvedType(), 59 public Expr getLeft() { 69 return new KCode().app("", getLeft().toCode(expand)).app(mOp, getRight().toCode(expand)); 79 if (!getLeft().isDynamic()) { 82 return getLeft().getInvertibleError(); 89 if (!getLeft().isDynamic()) { 92 return inverseCast(getLeft()); 108 final Expr left = getLeft(); [all...] |
BitShiftExpr.java | 34 return join(getLeft().getUniqueKey(), mOp, getRight().getUniqueKey()); 39 return getLeft().getResolvedType(); 51 public Expr getLeft() { 62 .app("", getLeft().toCode(expand))
|
ComparisonExpr.java | 51 public Expr getLeft() { 66 return new KCode().app("", getLeft().toCode(expand))
|
/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; }
|
/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...] |
/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/percent/tests/java/android/support/percent/ |
PercentFrameTest.java | 95 int childLeft = childToTest.getLeft(); 114 int childLeft = childToTest.getLeft(); 135 int childLeft = childToTest.getLeft(); 172 int childLeft = childToTest.getLeft(); 193 mPercentFrameLayout.layout(mPercentFrameLayout.getLeft(), 203 int childLeft = childToTest.getLeft(); 235 mPercentFrameLayout.layout(mPercentFrameLayout.getLeft(), 240 int childLeft = childToTest.getLeft();
|
PercentRelativeRtlTest.java | 126 mPercentRelativeLayout.layout(mPercentRelativeLayout.getLeft(), 142 final int childLeft = childToTest.getLeft(); 171 final int childLeft = childToTest.getLeft(); 197 final int childLeft = childToTest.getLeft(); 228 final int childLeft = childToTest.getLeft(); 260 final int childLeft = childToTest.getLeft(); 279 rightChild.getLeft() - 0.1f * mContainerWidth, childRight);
|
PercentRelativeTest.java | 87 final int childLeft = childToTest.getLeft(); 108 final int childLeft = childToTest.getLeft(); 163 final int childLeft = childToTest.getLeft(); 178 rightChild.getLeft() - 0.1f * mContainerWidth, childRight);
|
/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...] |