/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/ |
BoxModel.java | 65 boundsRect.right - getMarginRight(),
77 marginRect.right - getPaddingRight(),
82 public void setMargins(float left, float top, float right, float bottom) {
85 setMarginRight(right);
90 public void setPadding(float left, float top, float right, float bottom) {
93 setPaddingRight(right);
|
/external/avahi/avahi-core/ |
prioq-test.c | 53 if (n->right) 54 assert(n->right->parent == n); 57 assert(n->parent->left == n || n->parent->right == n); 60 assert(n->next == n->parent->right); 67 assert(n->parent->right == NULL); 80 rec(n->right);
|
/external/compiler-rt/test/asan/TestCases/ |
use-after-free-right.cc | 8 // Test use-after-free report in the case when access is at the right border of 19 // CHECK: {{ #0 0x.* in main .*use-after-free-right.cc:}}[[@LINE-4]] 24 // CHECK-Linux: {{ #1 0x.* in main .*use-after-free-right.cc:}}[[@LINE-10]] 27 // CHECK-Darwin: {{ #1 0x.* in main .*use-after-free-right.cc:}}[[@LINE-13]] 32 // CHECK-Linux: {{ #1 0x.* in main .*use-after-free-right.cc:}}[[@LINE-19]] 35 // CHECK-Darwin: {{ #1 0x.* in main .*use-after-free-right.cc:}}[[@LINE-22]]
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
BinaryTreeTraverser.java | 42 * Returns the right child of the specified node, or {@link Optional#absent()} if the specified 43 * node has no right child. 48 * Returns the children of this node, in left-to-right order. 71 Optional<T> right = rightChild(root); local 72 if (right.isPresent()) { 73 return right.get();
|
/external/pdfium/fpdfsdk/src/ |
fpdf_flatten.cpp | 17 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM }; 20 if (rect.left - rect.right > 0.000001f || rect.bottom - rect.top > 0.000001f) 23 if (rect.left == 0.0f && rect.top == 0.0f && rect.right == 0.0f && 29 rect.right - rcPage.right > 10.000001f || 54 rc.right = pPageObject->m_Right; 148 case RIGHT: { 150 pArray[i] = CPDF_Rect(array.GetAt(i)).right; 182 rcRet.right = GetMinMaxValue(*pRectArray, MAX, RIGHT); [all...] |
/external/proguard/docs/ |
style.css | 31 float: right; 75 float: right; 131 padding-right: 20px; 132 float: right; 210 text-align: right; 233 text-align: right;
|
/external/skia/gm/ |
patch.cpp | 33 SkPoint right[SkPatchUtils::kNumPtsCubic]; local 34 SkPatchUtils::getRightCubic(cubics, right); 43 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, right, paint); 47 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, right + 1, paint); 64 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, right + 1, paint); 74 //right points
|
/external/toybox/toys/lsb/ |
seq.c | 63 int i, len, dot, left = 0, right = 0; local 73 if (right<dot) right = dot; 77 sprintf(fmt_str = toybuf, "%%0%d.%df", left+right+!!right, right);
|
/external/webrtc/webrtc/modules/video_render/android/ |
video_render_android_impl.h | 58 const float right, const float bottom); 67 float& right, float& bottom) const; 95 const float right, const float bottom); 102 const float right, const float bottom); 115 const float top, const float right, 125 const float right,
|
/external/webrtc/webrtc/modules/video_render/ |
video_render_impl.h | 68 const float right, const float bottom); 89 float& right, float& bottom) const; 170 const float right, const float bottom); 175 const float right, const float bottom); 185 const float right, const float bottom); 193 const float right, const float bottom);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/ |
h264bsdFillRow7.S | 31 #define right r4 define 45 i32 right); 52 LDR right, [sp,#0x10] 130 CMP right,#0 136 SUBS right, right, #1
|
/frameworks/base/libs/hwui/ |
Outline.h | 42 void setRoundRect(int left, int top, int right, int bottom, float radius, float alpha) { 46 && right == mBounds.right 55 mBounds.set(left, top, right, bottom); 61 mPath.addRoundRect(SkRect::MakeLTRB(left, top, right, bottom), 64 mPath.addRect(left, top, right, bottom);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
MinimizedDockShadow.java | 53 private void updatePaint(int left, int top, int right, int bottom) { 70 0, 0, right - left, 0, 75 right - left, 0, 0, 0, 82 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { 83 super.onLayout(changed, left, top, right, bottom); 85 updatePaint(left, top, right, bottom);
|
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/view/ |
NavigationBarButton.java | 56 public void setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) { 59 if (right != null) right = TintedDrawable.wrap(right.mutate()); 61 super.setCompoundDrawables(left, top, right, bottom); 99 drawables[2] = compoundDrawables[2]; // right
|
/packages/apps/Calendar/src/com/android/calendar/ |
ColorChipView.java | 96 int right = getWidth() - 1; local 105 c.drawRect(0, 0, right, bottom, mPaint); 120 lines [ptr++] = right; 124 lines [ptr++] = right; 130 lines [ptr++] = right - halfBorderWidth; 132 lines [ptr++] = right - halfBorderWidth;
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
ButtonDropTarget.java | 135 final int right; local 138 right = to.right - getPaddingRight(); 139 left = right - width; 142 right = left + width; 148 to.set(left, top, right, bottom);
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
PercentageBarChart.java | 76 final int right = getWidth() - getPaddingRight(); local 80 final int width = right - left; 84 float nextX = right; 120 if (nextX > right) { 121 canvas.drawRect(lastX, top, right, bottom, e.paint); 130 canvas.drawRect(lastX, top, right, bottom, mEmptyPaint);
|
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
select.go | 51 if (n.Right.Op == OCONVNOP || n.Right.Op == OCONVIFACE) && n.Right.Implicit { 52 n.Right = n.Right.Left 55 if n.Right.Op != ORECV { 56 Yyerror("select assignment must have receive on right hand side") 65 Yyerror("select assignment must have receive on right hand side") 72 n.Right = n.Rlist.N 135 ch = n.Right.Lef [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
select.go | 48 if (n.Right.Op == OCONVNOP || n.Right.Op == OCONVIFACE) && n.Right.Implicit { 49 n.Right = n.Right.Left 52 if n.Right.Op != ORECV { 53 Yyerror("select assignment must have receive on right hand side") 62 Yyerror("select assignment must have receive on right hand side") 69 n.Right = n.Rlist.N 132 ch = n.Right.Lef [all...] |
/prebuilts/go/darwin-x86/test/bench/shootout/ |
binary-tree.c | 46 struct tn* right; member in struct:tn 51 treeNode* NewTreeNode(treeNode* left, treeNode* right, long item) 58 new->right = right; 70 return tree->item + ItemCheck(tree->left) - ItemCheck(tree->right); 93 DeleteTree(tree->right);
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
select.go | 51 if (n.Right.Op == OCONVNOP || n.Right.Op == OCONVIFACE) && n.Right.Implicit { 52 n.Right = n.Right.Left 55 if n.Right.Op != ORECV { 56 Yyerror("select assignment must have receive on right hand side") 65 Yyerror("select assignment must have receive on right hand side") 72 n.Right = n.Rlist.N 135 ch = n.Right.Lef [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
select.go | 48 if (n.Right.Op == OCONVNOP || n.Right.Op == OCONVIFACE) && n.Right.Implicit { 49 n.Right = n.Right.Left 52 if n.Right.Op != ORECV { 53 Yyerror("select assignment must have receive on right hand side") 62 Yyerror("select assignment must have receive on right hand side") 69 n.Right = n.Rlist.N 132 ch = n.Right.Lef [all...] |
/prebuilts/go/linux-x86/test/bench/shootout/ |
binary-tree.c | 46 struct tn* right; member in struct:tn 51 treeNode* NewTreeNode(treeNode* left, treeNode* right, long item) 58 new->right = right; 70 return tree->item + ItemCheck(tree->left) - ItemCheck(tree->right); 93 DeleteTree(tree->right);
|
/prebuilts/tools/common/proguard/proguard4.7/docs/ |
style.css | 31 float: right; 75 float: right; 121 padding-right: 20px; 122 float: right; 199 text-align: right; 222 text-align: right;
|
/development/samples/ApiDemos/res/layout/ |
table_layout_10.xml | 26 android:gravity="right" 39 android:gravity="right" 50 android:gravity="right">
|