HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 201 - 225 of 3362) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/test/CodeGen/
2002-02-14-EntryNodePreds.c 19 QUAD_EDGE left, right; member in struct:__anon18171
  /external/clang/test/Modules/
diamond-pch.c 13 right(&d);
diamond.c 14 right(&d);
  /external/guava/guava/src/com/google/common/collect/
LexicographicalOrdering.java 42 Iterator<T> right = rightIterable.iterator(); local
44 if (!right.hasNext()) {
47 int result = elementOrder.compare(left.next(), right.next());
52 if (right.hasNext()) {
NaturalOrdering.java 29 @SuppressWarnings("unchecked") // TODO(kevinb): the right way to explain this??
34 @Override public int compare(Comparable left, Comparable right) {
36 checkNotNull(right);
37 if (left == right) {
41 return left.compareTo(right);
NullsFirstOrdering.java 34 @Override public int compare(@Nullable T left, @Nullable T right) {
35 if (left == right) {
41 if (right == null) {
44 return ordering.compare(left, right);
52 @SuppressWarnings("unchecked") // still need the right way to explain this
NullsLastOrdering.java 34 @Override public int compare(@Nullable T left, @Nullable T right) {
35 if (left == right) {
41 if (right == null) {
44 return ordering.compare(left, right);
56 @SuppressWarnings("unchecked") // still need the right way to explain this
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/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.h 86 bool clip(float left, float top, float right, float bottom,
105 void setClip(float left, float top, float right, float bottom);
116 void resetClip(float left, float top, float right, float bottom);
237 bool clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op);
  /frameworks/base/media/java/android/media/videoeditor/
EffectKenBurns.java 98 start.right = getStartRect().right;
102 end.right = getEndRect().right;
  /hardware/qcom/display/msm8960/libtilerenderer/
tilerenderer.h 32 void startTileRendering(OpenGLRenderer* renderer, int left, int top, int right, int bottom);
  /hardware/qcom/display/msm8x26/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...]
  /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/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/third_party/WebKit/Tools/GardeningServer/styles/
onebar.css 39 border-right: none;
45 float: right;
47 margin-right: 8px;
67 right: 5px;
76 padding-right: 2px;
  /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/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;;
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ProgressBar.java 93 dest.right = width;
100 dest.right = width;
106 dest.right = ((width - left) * progress) / 100;
115 dest.left = dest.right;
116 dest.right = width;
  /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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
DES.java 285 int work, right, left; local
292 right = (in[inOff + 4] & 0xff) << 24;
293 right |= (in[inOff + 5] & 0xff) << 16;
294 right |= (in[inOff + 6] & 0xff) << 8;
295 right |= (in[inOff + 7] & 0xff);
297 work = ((left >>> 4) ^ right) & 0x0f0f0f0f;
298 right ^= work;
300 work = ((left >>> 16) ^ right) & 0x0000ffff;
301 right ^= work;
303 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;
133 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right,
135 if (left < right && top < bottom && !this->isEmpty() && // check for empties
136 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
140 if (fRight > right) fRight = right;
    [all...]

Completed in 621 milliseconds

1 2 3 4 5 6 7 891011>>