/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...] |
/external/clang/test/Modules/ |
va_list.cpp | 6 @import right; variable
|
/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());
|
/libcore/ojluni/src/main/java/java/util/function/ |
DoubleBinaryOperator.java | 45 * @param right the second operand 48 double applyAsDouble(double left, double right);
|
IntBinaryOperator.java | 46 * @param right the second operand 49 int applyAsInt(int left, int right);
|
LongBinaryOperator.java | 46 * @param right the second operand 49 long applyAsLong(long left, long right);
|
/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/native/services/surfaceflinger/DisplayHardware/ |
FloatRect.h | 30 float right; member in class:android::FloatRect 34 : left(0), top(0), right(0), bottom(0) { } 36 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { } 38 inline float getWidth() const { return right - left; }
|
/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). 34 * Note that the right and bottom coordinates are exclusive. This means a Rect 37 * those of its bottom and right. 42 public int right; field in class:Rect 67 * checking is performed, so the caller must ensure that left <= right and 72 * @param right The X coordinate of the right side of the rectangle 75 public Rect(int left, int top, int right, int bottom) { 78 this.right = right [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;
|
/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...] |
/frameworks/base/libs/hwui/ |
Rect.h | 34 (r).left, (r).top, (r).right, (r).bottom 36 (r).left(), (r).top(), (r).right(), (r).bottom() 46 float right; member in class:android::uirenderer::Rect 58 right(0), 62 inline Rect(float left, float top, float right, float bottom): 65 right(right), 72 right(width), 79 right(rect.fRight), 92 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);
|