HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 1 - 25 of 3170) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
diamond_right.h 3 double right(double *);
6 int left, right; member in struct:left_and_right
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
StateCluster.java 30 /** A Cluster object points to the left/right (start and end) states of a
35 public NFAState right; field in class:StateCluster
37 public StateCluster(NFAState left, NFAState right) {
39 this.right = right;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnPOS.java 28 /** The part of speech at right side */
29 public int right = 0; field in class:WnnPOS
40 * @param right The part of speech at right side
42 public WnnPOS(int left, int right) {
44 this.right = right;
  /frameworks/base/test-runner/src/junit/runner/
Sorter.java 13 public void swap(Vector values, int left, int right);
16 public static void sortStrings(Vector values , int left, int right, Swapper swapper) {
18 int oright= right;
19 String mid= (String)values.elementAt((left + right) / 2);
23 while (mid.compareTo((String)(values.elementAt(right))) < 0)
24 right--;
25 if (left <= right) {
26 swapper.swap(values, left, right);
28 right--;
30 } while (left <= right);
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
GlobalSortKeyComparator.java 25 public int compare(NotificationRecord left, NotificationRecord right) {
29 if (right.getGlobalSortKey() == null) {
30 throw new IllegalStateException("Missing right global sort key: " + right);
32 return left.getGlobalSortKey().compareTo(right.getGlobalSortKey());
  /external/skia/src/core/
SkScalar.cpp 22 int right = 0; local
23 while (right < length && searchKey > keys[right])
24 right++;
27 if (length == right)
29 if (0 == right)
31 // Otherwise, interpolate between right - 1 and right.
32 SkScalar rightKey = keys[right];
33 SkScalar leftKey = keys[right-1]
    [all...]
  /frameworks/base/graphics/java/android/graphics/
RectF.java 27 * represented by the coordinates of its 4 edges (left, top, right bottom).
30 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
35 public float right; field in class:RectF
45 * checking is performed, so the caller must ensure that left <= right and
50 * @param right The X coordinate of the right side of the rectangle
53 public RectF(float left, float top, float right, float bottom) {
56 this.right = right;
69 left = top = right = bottom = 0.0f
    [all...]
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 29 * represented by the coordinates of its 4 edges (left, top, right bottom).
32 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
37 public int right; field in class:Rect
62 * checking is performed, so the caller must ensure that left <= right and
67 * @param right The X coordinate of the right side of the rectangle
70 public Rect(int left, int top, int right, int bottom) {
73 this.right = right;
86 left = top = right = bottom = 0
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
swap.hpp 30 void swap_impl(T& left, T& right)
33 swap(left,right);
37 void swap_impl(T (& left)[N], T (& right)[N])
41 ::boost_swap_impl::swap_impl(left[i], right[i]);
49 void swap(T1& left, T2& right)
51 ::boost_swap_impl::swap_impl(left, right);
  /external/clang/test/CodeGenCXX/
microsoft-abi-multiple-nonvirtual-inheritance.cpp 7 struct Right {
8 virtual void right();
11 struct ChildNoOverride : Left, Right {
14 struct ChildOverride : Left, Right {
16 virtual void right();
68 child->right();
69 // When calling a right base's virtual method, one needs to adjust 'this' at
74 // CHECK: %[[RIGHT:.*]] = bitcast i8* %[[RIGHT_i8]] to %struct.Right*
76 // CHECK: %[[VFPTR:.*]] = bitcast %struct.Right* %[[RIGHT]] to void (%struct.Right*)**
84 void ChildOverride::right() { function in class:ChildOverride
129 void GrandchildOverride::right() { function in class:GrandchildOverride
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ComparisonChain.java 75 Comparable left, Comparable right) {
76 return classify(left.compareTo(right));
79 @Nullable T left, @Nullable T right, Comparator<T> comparator) {
80 return classify(comparator.compare(left, right));
82 @Override public ComparisonChain compare(int left, int right) {
83 return classify(Ints.compare(left, right));
85 @Override public ComparisonChain compare(long left, long right) {
86 return classify(Longs.compare(left, right));
88 @Override public ComparisonChain compare(float left, float right) {
89 return classify(Float.compare(left, right));
    [all...]
  /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/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...]
  /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/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...]
  /frameworks/base/libs/hwui/
Rect.h 33 (r).left, (r).top, (r).right, (r).bottom
35 (r).left(), (r).top(), (r).right(), (r).bottom()
45 float right; member in class:android::uirenderer::Rect
57 right(0),
61 inline Rect(float left, float top, float right, float bottom):
64 right(right),
71 right(width),
78 right(rect.fRight),
91 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...]
  /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/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
MockRectF.java 28 //public float right;
42 it.right = rhs.right;
47 public void $init(float left, float top, float right, float bottom) {
50 it.right = right;
62 it.right = it.right + dx;
71 it.right = left + width();
87 return it.right - it.left;
    [all...]
  /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());

Completed in 1172 milliseconds

1 2 3 4 5 6 7 8 91011>>