HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 1 - 25 of 5307) 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
  /system/bt/vendor_libs/test_vendor_lib/include/
bt_address.h 44 inline bool operator==(const BtAddress& right) {
45 return address_ == right.address_;
47 inline bool operator!=(const BtAddress& right) {
48 return address_ != right.address_;
50 inline bool operator<(const BtAddress& right) {
51 return address_ < right.address_;
53 inline bool operator>(const BtAddress& right) {
54 return address_ > right.address_;
56 inline bool operator<=(const BtAddress& right) {
57 return address_ <= right.address_
    [all...]
  /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;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/
CASTBase.h 41 struct _nodebase *right, *down; member in struct:_nodebase
  /external/clang/test/Modules/
va_list.cpp 6 @import right; variable
  /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 21 int right = 0; local
22 while (right < length && searchKey > keys[right])
23 right++;
26 if (length == right)
28 if (0 == right)
30 // Otherwise, interpolate between right - 1 and right.
31 SkScalar rightKey = keys[right];
32 SkScalar leftKey = keys[right-1]
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/usage/
UsageStatsTest.java 32 private UsageStats right; field in class:UsageStatsTest
37 right = new UsageStats();
44 right.mPackageName = "com.test";
45 right.mBeginTimeStamp = 99999;
47 left.add(right);
56 right.mPackageName = "com.test";
57 right.mEndTimeStamp = 100001;
59 left.add(right);
69 right.mPackageName = "com.test";
70 right.mBeginTimeStamp = 100001
    [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 30 * represented by the coordinates of its 4 edges (left, top, right bottom).
33 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
35 * Note that the right and bottom coordinates are exclusive. This means a Rect
38 * those of its bottom and right.
43 public int right; field in class:Rect
68 * checking is performed, so the caller must ensure that left <= right and
73 * @param right The X coordinate of the right side of the rectangle
76 public Rect(int left, int top, int right, int bottom) {
79 this.right = right
    [all...]
  /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/base/services/core/java/com/android/server/notification/
GlobalSortKeyComparator.java 29 public int compare(NotificationRecord left, NotificationRecord right) {
34 if (right.getGlobalSortKey() == null) {
35 Slog.wtf(TAG, "Missing right global sort key: " + right);
38 return left.getGlobalSortKey().compareTo(right.getGlobalSortKey());
  /frameworks/native/include/ui/
FloatRect.h 25 : left(_left), top(_top), right(_right), bottom(_bottom) {}
27 float getWidth() const { return right - left; }
32 float right = 0.0f; member in class:android::FloatRect
37 return a.left == b.left && a.top == b.top && a.right == b.right && a.bottom == b.bottom;
  /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),
86 right(rect.fRight)
    [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...]

Completed in 907 milliseconds

1 2 3 4 5 6 7 8 91011>>