/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/ |
SelectionRenderer.java | 24 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom, 26 canvas.drawRect(left, top, right, top + stroke, paint); 27 canvas.drawRect(left, bottom - stroke, right, bottom, paint); 29 canvas.drawRect(right - stroke, top, right, bottom, paint); 32 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom, 34 canvas.drawRect(left, top, right, top + stroke, selectPaint); 35 canvas.drawRect(left, bottom - stroke, right, bottom, selectPaint); 37 canvas.drawRect(right - stroke, top, right, bottom, selectPaint) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLEntitySearch.cpp | 33 static const HTMLEntityTableEntry* halfway(const HTMLEntityTableEntry* left, const HTMLEntityTableEntry* right) 35 return &left[(right - left) / 2]; 60 const HTMLEntityTableEntry* right = m_last; local 61 if (left == right) 67 return right; 68 while (left + 1 < right) { 69 const HTMLEntityTableEntry* probe = halfway(left, right); 75 right = probe; 78 ASSERT(left + 1 == right); 79 return right; 85 const HTMLEntityTableEntry* right = m_last; local [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Rect.java | 28 * represented by the coordinates of its 4 edges (left, top, right bottom). 31 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom). 36 public int right; field in class:Rect 61 * checking is performed, so the caller must ensure that left <= right and 66 * @param right The X coordinate of the right side of the rectangle 69 public Rect(int left, int top, int right, int bottom) { 72 this.right = right; 85 left = top = right = bottom = 0 [all...] |
/external/chromium_org/v8/src/compiler/ |
machine-operator-reducer.cc | 51 if (m.right().Is(0)) return Replace(m.right().node()); // x & 0 => 0 52 if (m.right().Is(-1)) return Replace(m.left().node()); // x & -1 => x 54 return ReplaceInt32(m.left().Value() & m.right().Value()); 61 if (m.right().Is(0)) return Replace(m.left().node()); // x | 0 => x 62 if (m.right().Is(-1)) return Replace(m.right().node()); // x | -1 => -1 64 return ReplaceInt32(m.left().Value() | m.right().Value()); 67 if (m.left().IsWord32Shl() && m.right().IsWord32Shr()) { 69 Int32BinopMatcher mright(m.right().node()) [all...] |
/external/javassist/src/main/javassist/compiler/ast/ |
DoubleConst.java | 44 public ASTree compute(int op, ASTree right) { 45 if (right instanceof IntConst) 46 return compute0(op, (IntConst)right); 47 else if (right instanceof DoubleConst) 48 return compute0(op, (DoubleConst)right); 53 private DoubleConst compute0(int op, DoubleConst right) { 56 || right.type == TokenId.DoubleConstant) 61 return compute(op, this.value, right.value, newType); 64 private DoubleConst compute0(int op, IntConst right) { 65 return compute(op, this.value, (double)right.value, this.type) [all...] |
Pair.java | 25 protected ASTree left, right; field in class:Pair 29 right = _right; 39 sbuf.append(right == null ? "<null>" : right.toString()); 46 public ASTree getRight() { return right; } 50 public void setRight(ASTree _right) { right = _right; }
|
/external/replicaisland/src/com/replica/replicaisland/ |
QuickSorter.java | 44 // quicksort a[left] to a[right] 45 public void quicksort(Type[] a, int left, int right, Comparator<Type> comparator) { 46 if (right <= left) return; 47 int i = partition(a, left, right, comparator); 49 quicksort(a, i + 1, right, comparator); 52 // partition a[left] to a[right], assumes left < right 53 private int partition(Type[] a, int left, int right, Comparator<Type> comparator) { 55 int j = right; 57 while (comparator.compare(a[++i], a[right]) < 0) { // find item on left to swa [all...] |
/frameworks/base/core/java/android/animation/ |
RectEvaluator.java | 59 * (left, top, right, and bottom). 75 int right = startValue.right + (int) ((endValue.right - startValue.right) * fraction); local 78 return new Rect(left, top, right, bottom); 80 mRect.set(left, top, right, bottom);
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Bool.java | 38 * @param right non-null reference to the evaluated right operand. 44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException 47 if (XObject.CLASS_BOOLEAN == right.getType()) 48 return right; 50 return right.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
Number.java | 38 * @param right non-null reference to the evaluated right operand. 44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException 47 if (XObject.CLASS_NUMBER == right.getType()) 48 return right; 50 return new XNumber(right.num());
|
String.java | 37 * @param right non-null reference to the evaluated right operand. 43 public XObject operate(XObject right) throws javax.xml.transform.TransformerException 45 return (XString)right.xstr(); // semi-safe cast.
|
/external/chromium_org/chrome/browser/resources/ |
profile_signin_confirmation.css | 8 margin-right: 0; 16 margin-right: 0;
|
/external/chromium_org/third_party/skia/tests/ |
CanvasStateHelpers.h | 23 float right, float bottom, int32_t spacer); 32 float left, float top, float right, float bottom, int32_t spacer); 39 int32_t right, int32_t bottom, int32_t clipOp, const SkRegion& localRegion); 48 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
|
/external/libunwind/scripts/ |
kernel-diff.sh | 7 right=$(eval echo $r) 8 # echo $left $right 9 diff -up $left $right
|
/prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/android/ |
rect.h | 28 int32_t right; member in struct:ARect
|
/prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/android/ |
rect.h | 28 int32_t right; member in struct:ARect
|
/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/android/ |
rect.h | 28 int32_t right; member in struct:ARect
|
/prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/android/ |
rect.h | 28 int32_t right; member in struct:ARect
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/android/ |
rect.h | 28 int32_t right; member in struct:ARect
|
/prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/android/ |
rect.h | 28 int32_t right; member in struct:ARect
|
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/android/ |
rect.h | 28 int32_t right; member in struct:ARect
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
TreeBase.h | 23 NodeBase *right; member in class:mcld::NodeBase 27 : left(0), right(0) 64 { return (m_pNode->right == m_pNode); } 67 { return ((m_pNode->right) != (m_pNode->right->right)); } 70 { return ((m_pNode->left) != (m_pNode->left->right)); } 88 this->m_pNode = this->m_pNode->right; 100 this->m_pNode->right = pOther;
|
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
drive_backend_test_util.cc | 23 const FileDetails& right) { 28 for (int i = 0; i < right.parent_folder_ids_size(); ++i) 32 EXPECT_EQ(left.title(), right.title()); 33 EXPECT_EQ(left.file_kind(), right.file_kind()); 34 EXPECT_EQ(left.md5(), right.md5()); 35 EXPECT_EQ(left.etag(), right.etag()); 36 EXPECT_EQ(left.creation_time(), right.creation_time()); 37 EXPECT_EQ(left.modification_time(), right.modification_time()); 38 EXPECT_EQ(left.missing(), right.missing()); 39 EXPECT_EQ(left.change_id(), right.change_id()) [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowRect.java | 14 public void __constructor__(int left, int top, int right, int bottom) { 17 realRect.right = right; 24 realRect.right = otherRect.right; 30 set(rect.left, rect.top, rect.right, rect.bottom); 34 public void set(int left, int top, int right, int bottom) { 37 realRect.right = right; 43 return realRect.right - realRect.left [all...] |
/external/chromium-trace/trace-viewer/src/tracing/analysis/ |
analyze_slices.css | 8 text-align: right;
|