HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 1 - 25 of 5961) 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) const {
45 return address_ == right.address_;
47 inline bool operator!=(const BtAddress& right) const {
48 return address_ != right.address_;
50 inline bool operator<(const BtAddress& right) const {
51 return address_ < right.address_;
53 inline bool operator>(const BtAddress& right) const {
54 return address_ > right.address_;
56 inline bool operator<=(const BtAddress& right) const {
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...]
  /external/skqp/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 32 * represented by the coordinates of its 4 edges (left, top, right bottom).
35 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
37 * Note that the right and bottom coordinates are exclusive. This means a Rect
40 * those of its bottom and right.
45 public int right; field in class:Rect
70 * checking is performed, so the caller must ensure that left <= right and
75 * @param right The X coordinate of the right side of the rectangle
78 public Rect(int left, int top, int right, int bottom) {
81 this.right = right
    [all...]
  /frameworks/native/libs/ui/include/ui/
FloatRect.h 25 : left(_left), top(_top), right(_right), bottom(_bottom) {}
27 float getWidth() const { return right - left; }
36 (right < other.right) ? right : other.right,
43 float right = 0.0f; member in class:android::FloatRect
48 return a.left == b.left && a.top == b.top && a.right == b.right && a.bottom == b.bottom;
  /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/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());
  /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...]
  /prebuilts/go/darwin-x86/src/crypto/des/
cipher.go 67 left, right := uint32(b>>32), uint32(b)
70 right = (right << 1) | (right >> 31)
73 left, right = feistel(left, right, c.cipher1.subkeys[2*i], c.cipher1.subkeys[2*i+1])
76 right, left = feistel(right, left, c.cipher2.subkeys[15-2*i], c.cipher2.subkeys[15-(2*i+1)])
79 left, right = feistel(left, right, c.cipher3.subkeys[2*i], c.cipher3.subkeys[2*i+1]
    [all...]
  /prebuilts/go/linux-x86/src/crypto/des/
cipher.go 67 left, right := uint32(b>>32), uint32(b)
70 right = (right << 1) | (right >> 31)
73 left, right = feistel(left, right, c.cipher1.subkeys[2*i], c.cipher1.subkeys[2*i+1])
76 right, left = feistel(right, left, c.cipher2.subkeys[15-2*i], c.cipher2.subkeys[15-(2*i+1)])
79 left, right = feistel(left, right, c.cipher3.subkeys[2*i], c.cipher3.subkeys[2*i+1]
    [all...]
  /frameworks/base/libs/hwui/
Rect.h 33 #define RECT_ARGS(r) (r).left, (r).top, (r).right, (r).bottom
34 #define SK_RECT_ARGS(r) (r).left(), (r).top(), (r).right(), (r).bottom()
44 float right; member in class:android::uirenderer::Rect
53 inline Rect() : left(0), top(0), right(0), bottom(0) {}
55 inline Rect(float left, float top, float right, float bottom)
56 : left(left), top(top), right(right), bottom(bottom) {}
58 inline Rect(float width, float height) : left(0.0f), top(0.0f), right(width), bottom(height) {}
64 , right(rect.fRight)
71 , 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...]

Completed in 892 milliseconds

1 2 3 4 5 6 7 8 91011>>