HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 26 - 50 of 3456) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/mips/
OP_CMPL_DOUBLE.S 5 %verify "right arg NaN"
OP_CMPL_FLOAT.S 5 %verify "right arg NaN"
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_backend_test_util.h 29 const ServiceMetadata& right);
30 void ExpectEquivalentDetails(const FileDetails& left, const FileDetails& right);
32 const FileMetadata& right);
34 const FileTracker& right);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
From2iToMS_16x16.c 33 LVM_INT32 temp1,left,right; local
40 right = (LVM_INT32)*src;
44 temp1 = (left+right)>>1;
49 temp1 = (left-right)>>1;
  /frameworks/native/services/surfaceflinger/DisplayHardware/
FloatRect.h 29 float right; member in class:android::FloatRect
34 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { }
36 inline float getWidth() const { return right - left; }
  /external/chromium_org/ui/gfx/
insets_f.cc 15 InsetsF::InsetsF(float top, float left, float bottom, float right)
16 : InsetsBase<InsetsF, float>(top, left, bottom, right) {}
22 return base::StringPrintf("%f,%f,%f,%f", top(), left(), bottom(), right());
  /frameworks/base/graphics/java/android/graphics/
Insets.java 33 public final int right; field in class:Insets
36 private Insets(int left, int top, int right, int bottom) {
39 this.right = right;
50 * @param right the right inset
55 public static Insets of(int left, int top, int right, int bottom) {
56 if (left == 0 && top == 0 && right == 0 && bottom == 0) {
59 return new Insets(left, top, right, bottom);
70 return (r == null) ? NONE : of(r.left, r.top, r.right, r.bottom)
    [all...]
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
49 * checking is performed, so the caller must ensure that left <= right and
54 * @param right The X coordinate of the right side of the rectangle
57 public Rect(int left, int top, int right, int bottom) {
60 this.right = right;
73 left = top = right = bottom = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
IntRectExtent.h 47 IntRectExtent(int top, int right, int bottom, int left)
49 , m_right(right)
58 int right() const { return m_right; } function in class:WebCore::IntRectExtent
59 void setRight(int right) { m_right = right; }
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
75 rect.expand(left() + right(), top() + bottom());
88 && a.right() == b.right()
101 a.setRight(a.right() + b.right())
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestExpressionFeatures.g3 116 | e '^'<assoc=right>^ e
121 | e ('='<assoc=right>^
122 |'+='<assoc=right>^
123 |'-='<assoc=right>^
124 |'*='<assoc=right>^
125 |'/='<assoc=right>^
126 |'&='<assoc=right>^
127 |'|='<assoc=right>^
128 |'^='<assoc=right>^
129 |'>>='<assoc=right>
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ComparisonChain.java 67 Comparable left, Comparable right) {
68 return classify(left.compareTo(right));
71 @Nullable T left, @Nullable T right, Comparator<T> comparator) {
72 return classify(comparator.compare(left, right));
74 @Override public ComparisonChain compare(int left, int right) {
75 return classify(Ints.compare(left, right));
77 @Override public ComparisonChain compare(long left, long right) {
78 return classify(Longs.compare(left, right));
80 @Override public ComparisonChain compare(float left, float right) {
81 return classify(Float.compare(left, right));
    [all...]
BstCountBasedBalancePolicies.java 23 import static com.google.common.collect.BstSide.RIGHT;
52 BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right) {
53 return checkNotNull(nodeFactory).createNode(source, left, right);
58 public N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right) {
60 return right;
61 } else if (right == null) {
63 } else if (countAggregate.treeValue(left) > countAggregate.treeValue(right)) {
65 left, left.childOrNull(LEFT), combine(nodeFactory, left.childOrNull(RIGHT), right));
67 return nodeFactory.createNode(right, combine(nodeFactory, left, right.childOrNull(LEFT))
    [all...]
  /external/chromium_org/remoting/base/
typed_buffer_unittest.cc 52 TypedBuffer<Data> right(sizeof(int));
56 EXPECT_TRUE(right.get());
57 EXPECT_EQ(right.length(), sizeof(int));
59 Data* raw_ptr = right.get();
60 left = right.Pass();
68 EXPECT_FALSE(right.get());
69 EXPECT_EQ(right.length(), 0u);
75 TypedBuffer<Data> right(sizeof(int) * 2);
79 EXPECT_TRUE(right.get());
80 EXPECT_EQ(right.length(), sizeof(int) * 2)
    [all...]
  /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];
59 const HTMLEntityTableEntry* right = m_last; local
60 if (left == right)
66 return right;
67 while (left + 1 < right) {
68 const HTMLEntityTableEntry* probe = halfway(left, right);
74 right = probe;
77 ASSERT(left + 1 == right);
78 return right;
84 const HTMLEntityTableEntry* right = m_last; local
    [all...]
  /frameworks/base/libs/hwui/
Rect.h 31 (r).left, (r).top, (r).right, (r).bottom
41 float right; member in class:android::uirenderer::Rect
53 right(0),
57 inline Rect(float left, float top, float right, float bottom):
60 right(right),
67 right(width),
80 left = top = right = bottom = 0.0f;
86 return !((left < right) && (top < bottom));
90 left = top = right = bottom = 0.0f
    [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...]
  /external/chromium_org/third_party/WebKit/Source/platform/
CalculationValue.cpp 41 float right = m_rightSide->evaluate(maxValue); local
44 return left + right;
46 return left - right;
48 return left * right;
50 if (!right)
52 return left / right;
  /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());
  /external/chromium_org/cc/resources/
shared_bitmap.h 27 bool operator<(const SharedBitmap& right) const {
28 if (memory_ < right.memory_)
30 if (memory_ > right.memory_)
32 return id_ < right.id_;
  /external/chromium_org/chrome/browser/resources/
profile_signin_confirmation.css 8 margin-right: 0;
16 margin-right: 0;
  /external/chromium_org/third_party/icu/source/common/
uarrsort.h 31 * @param right Pointer to the "right" item.
33 * <0 if left<right
34 * ==0 if left==right
35 * >0 if left>right
40 UComparator(const void *context, const void *left, const void *right);
68 uprv_uint16Comparator(const void *context, const void *left, const void *right);
75 uprv_int32Comparator(const void *context, const void *left, const void *right);
82 uprv_uint32Comparator(const void *context, const void *left, const void *right);

Completed in 2025 milliseconds

12 3 4 5 6 7 8 91011>>