HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 276 - 300 of 4231) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
unsetf_mask.pass.cpp 33 t.unsetf(test::dec | test::right);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
HasCompoundDrawablesMatcher.java 16 public HasCompoundDrawablesMatcher(int left, int top, int right, int bottom) {
17 expectedCompoundDrawables = new ShadowTextView.CompoundDrawables(left, top, right, bottom);
42 public static Matcher<TextView> hasCompoundDrawables(int left, int top, int right, int bottom) {
43 return new HasCompoundDrawablesMatcher(left, top, right, bottom);
  /frameworks/base/core/java/android/text/style/
LineBackgroundSpan.java 26 int left, int right,
  /frameworks/base/libs/hwui/
Snapshot.cpp 93 clipRegion->setRect(clipRect->left, clipRect->top, clipRect->right, clipRect->bottom);
110 bool Snapshot::clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op) {
112 tmp.set(left, top, right, bottom);
126 bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) {
127 Rect r(left, top, right, bottom);
139 clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, SkRegion::kIntersect_Op);
150 setClip(r.left, r.top, r.right, r.bottom);
156 clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, op);
168 void Snapshot::setClip(float left, float top, float right, float bottom) {
169 clipRect->set(left, top, right, bottom)
    [all...]
  /frameworks/support/v7/cardview/base/android/support/v7/widget/
CardViewDelegate.java 32 void setShadowPadding(int left, int top, int right, int bottom);
  /hardware/qcom/display/msm8960/libtilerenderer/
tilerenderer.h 32 void startTileRendering(OpenGLRenderer* renderer, int left, int top, int right, int bottom);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
unsetf_mask.pass.cpp 33 t.unsetf(test::dec | test::right);
  /external/e2fsprogs/e2fsck/
dict.c 52 #define right dict_right macro
78 * its right child C are rearranged so that the P instead becomes the left
79 * child of C. The left subtree of C is inherited as the new right subtree
87 lower = upper->right;
88 upper->right = lowleft = lower->left;
99 assert (upper == upparent->right);
100 upparent->right = lower;
109 * the same procedure, but with left and right interchanged.
117 upper->left = lowright = lower->right;
122 if (upper == upparent->right) {
877 dnode_t *nil = dict_nil(dict), *root = dict_root(dict), *right; local
921 dnode_t *nil = dict_nil(dict), *parent, *right; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_render/external/
video_render_external_impl.cc 53 const float right,
72 float& right,
80 right = 0;
144 const float right,
156 const float right,
178 const float right,
190 const float right,
  /frameworks/base/graphics/java/android/graphics/
Path.java 438 arcTo(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, forceMoveTo);
453 arcTo(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, false);
468 public void arcTo(float left, float top, float right, float bottom, float startAngle,
471 native_arcTo(mNativePath, left, top, right, bottom, startAngle, sweepAngle, forceMoveTo);
499 private void detectSimplePath(float left, float top, float right, float bottom, Direction dir) {
507 rects.op((int) left, (int) top, (int) right, (int) bottom, Region.Op.UNION);
518 addRect(rect.left, rect.top, rect.right, rect.bottom, dir);
526 * @param right The right side of a rectangle to add to the path
530 public void addRect(float left, float top, float right, float bottom, Direction dir)
    [all...]
Region.java 71 nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom);
76 public Region(int left, int top, int right, int bottom) {
78 nativeSetRect(mNativeRegion, left, top, right, bottom);
97 return nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom);
102 public boolean set(int left, int top, int right, int bottom) {
103 return nativeSetRect(mNativeRegion, left, top, right, bottom);
182 return quickContains(r.left, r.top, r.right, r.bottom);
191 public native boolean quickContains(int left, int top, int right,
200 return quickReject(r.left, r.top, r.right, r.bottom);
208 public native boolean quickReject(int left, int top, int right, int bottom)
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
StyledCornersBitmapDrawable.java 242 float right = bounds.right - mBorderWidth / 2; local
254 flapCornerRectF.offsetTo(right - mCornerFlapSide, top);
259 flapCornerRectF.offsetTo(right - mCornerFlapSide, bottom - mCornerFlapSide);
286 float right = bounds.right; local
302 fakeCornerRectF.offsetTo(right - fakeCornerRectF.width(), top);
304 mCompatibilityModePath.moveTo(right, top);
305 mCompatibilityModePath.lineTo(right, top + mCornerRoundRadius);
312 .offsetTo(right - fakeCornerRectF.width(), bottom - fakeCornerRectF.height())
375 float right = bounds.right - mBorderWidth \/ 2; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 102 event.right = event.left + colWidth;
110 if (event.left < selection.right && event.right >= selection.left
122 float right = event.right; local
127 if (x <= right) {
140 // x > right
141 float dx = x - right;
143 // the upper right corner
148 // the lower right corne
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
power.css 11 margin-right: auto;
20 border-right-width: 0;
28 text-align: right;
35 margin-right: 10px;
42 border-right-width: 1px;
  /external/chromium_org/printing/
page_setup.cc 17 right(0),
26 right = 0;
36 right == rhs.right &&
69 DCHECK_LE(printable_area.right(), physical_size.width());
130 effective_margins_.right = std::max(requested_margins_.right,
132 bounds.right());
144 effective_margins_.right -
157 effective_margins_.right
    [all...]
  /external/chromium_org/tools/code_coverage/
croc.css 27 padding-right:10px;
55 text-align:right;
65 text-align:right;
69 text-align:right;
73 text-align:right;
  /external/lldb/examples/scripting/
dictionary.c 18 struct tree_node *right; member in struct:tree_node
71 new_node->right = NULL;
77 if (root->right != NULL)
78 insert (root->right, word);
84 new_node->right = NULL;
85 root->right = new_node;
111 new_node->right = NULL;
136 return find_word (dictionary->right, word);
153 if (dictionary->right)
154 print_tree (dictionary->right);
    [all...]
  /external/guava/guava/src/com/google/common/collect/
BstNode.java 20 import static com.google.common.collect.BstSide.RIGHT;
58 * The right child of this node. A null value indicates that this node has no right child.
61 private final N right; field in class:BstNode
63 BstNode(@Nullable K key, @Nullable N left, @Nullable N right) {
66 this.right = right;
85 case RIGHT:
86 return right;
120 if (hasChild(RIGHT)) {
    [all...]
  /external/pdfium/fpdfsdk/src/formfiller/
FFL_Utils.cpp 16 rcRet.right = FFL_MAX(rect1.right,rect2.right);
26 crRect.right + fSize,
36 crRect.right - fSize,
45 return (father.left <= son.left && father.right >= son.right &&
52 return (father.left <= son.x && father.right >= son.x &&
58 return (father.left <= x && father.right >= x &&
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BView.h 66 bounds.right = width;
91 dest.right = updateRect.right + xoff;
104 dest.right = updateRect.right + xoff;;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESEngine.java 408 int work, right, left; local
415 right = (in[inOff + 4] & 0xff) << 24;
416 right |= (in[inOff + 5] & 0xff) << 16;
417 right |= (in[inOff + 6] & 0xff) << 8;
418 right |= (in[inOff + 7] & 0xff);
420 work = ((left >>> 4) ^ right) & 0x0f0f0f0f;
421 right ^= work;
423 work = ((left >>> 16) ^ right) & 0x0000ffff;
424 right ^= work;
426 work = ((right >>> 2) ^ left) & 0x33333333
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRect.cpp 12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) {
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
24 if (right > fRight) fRight = right;
102 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right,
104 if (left < right && top < bottom && !this->isEmpty() && // check for empties
105 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
109 if (fRight > right) fRight = right;
    [all...]
  /external/skia/src/core/
SkRect.cpp 12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) {
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
24 if (right > fRight) fRight = right;
102 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right,
104 if (left < right && top < bottom && !this->isEmpty() && // check for empties
105 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
109 if (fRight > right) fRight = right;
    [all...]
  /external/chromium_org/v8/benchmarks/spinning-balls/
splay-tree.js 79 node.right = this.root_.right;
80 this.root_.right = null;
82 node.right = this.root_;
108 this.root_ = this.root_.right;
110 var right = this.root_.right;
112 // Splay to make sure that the new root has an empty right child.
114 // Insert the original right child as the right child of the ne
    [all...]
  /external/chromium_org/v8/tools/
splaytree.js 81 node.right = this.root_.right;
82 this.root_.right = null;
84 node.right = this.root_;
110 this.root_ = this.root_.right;
112 var right = this.root_.right;
114 // Splay to make sure that the new root has an empty right child.
116 // Insert the original right child as the right child of the ne
    [all...]

Completed in 1095 milliseconds

<<11121314151617181920>>