Home
last modified time | relevance | path

Searched defs:right (Results 1 – 25 of 794) sorted by relevance

12345678910>>...32

/external/guava/guava/src/com/google/common/collect/
DComparisonChain.java119 @Nullable Comparable left, @Nullable Comparable right) { in compare()
123 @Nullable T right, @Nullable Comparator<T> comparator) { in compare()
126 @Override public ComparisonChain compare(int left, int right) { in compare()
129 @Override public ComparisonChain compare(long left, long right) { in compare()
132 @Override public ComparisonChain compare(float left, float right) { in compare()
135 @Override public ComparisonChain compare(double left, double right) { in compare()
138 @Override public ComparisonChain compareTrueFirst(boolean left, boolean right) { in compareTrueFirst()
141 @Override public ComparisonChain compareFalseFirst(boolean left, boolean right) { in compareFalseFirst()
155 Comparable<?> left, Comparable<?> right); in compare()
162 @Nullable T left, @Nullable T right, Comparator<T> comparator); in compare()
[all …]
/external/r8/src/main/java/com/android/tools/r8/ir/code/
DSub.java25 public Sub(NumericType type, Value dest, Value left, Value right) { in Sub()
34 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
38 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
44 assert dest != right + 1; in CreateLong() local
48 public com.android.tools.r8.code.Instruction CreateFloat(int dest, int left, int right) { in CreateFloat()
52 public com.android.tools.r8.code.Instruction CreateDouble(int dest, int left, int right) { in CreateDouble()
56 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
60 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
64 public com.android.tools.r8.code.Instruction CreateFloat2Addr(int left, int right) { in CreateFloat2Addr()
68 public com.android.tools.r8.code.Instruction CreateDouble2Addr(int left, int right) { in CreateDouble2Addr()
[all …]
DArithmeticBinop.java13 public ArithmeticBinop(NumericType type, Value dest, Value left, Value right) { in ArithmeticBinop()
17 public abstract com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right); in CreateInt()
19 public abstract Instruction CreateLong(int dest, int left, int right); in CreateLong()
21 public abstract Instruction CreateFloat(int dest, int left, int right); in CreateFloat()
23 public abstract Instruction CreateDouble(int dest, int left, int right); in CreateDouble()
25 public abstract Instruction CreateInt2Addr(int left, int right); in CreateInt2Addr()
27 public abstract Instruction CreateLong2Addr(int left, int right); in CreateLong2Addr()
29 public abstract Instruction CreateFloat2Addr(int left, int right); in CreateFloat2Addr()
31 public abstract Instruction CreateDouble2Addr(int left, int right); in CreateDouble2Addr()
60 int right = rightValue().getConstInstruction().asConstNumber().getIntValue(); in fold() local
[all …]
DAdd.java20 public Add(NumericType type, Value dest, Value left, Value right) { in Add()
29 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
33 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
39 assert dest != right + 1; in CreateLong() local
43 public com.android.tools.r8.code.Instruction CreateFloat(int dest, int left, int right) { in CreateFloat()
47 public com.android.tools.r8.code.Instruction CreateDouble(int dest, int left, int right) { in CreateDouble()
51 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
55 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
59 public com.android.tools.r8.code.Instruction CreateFloat2Addr(int left, int right) { in CreateFloat2Addr()
63 public com.android.tools.r8.code.Instruction CreateDouble2Addr(int left, int right) { in CreateDouble2Addr()
[all …]
DMul.java20 public Mul(NumericType type, Value dest, Value left, Value right) { in Mul()
29 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
36 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
43 public com.android.tools.r8.code.Instruction CreateFloat(int dest, int left, int right) { in CreateFloat()
50 public com.android.tools.r8.code.Instruction CreateDouble(int dest, int left, int right) { in CreateDouble()
57 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
61 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
65 public com.android.tools.r8.code.Instruction CreateFloat2Addr(int left, int right) { in CreateFloat2Addr()
69 public com.android.tools.r8.code.Instruction CreateDouble2Addr(int left, int right) { in CreateDouble2Addr()
92 int foldIntegers(int left, int right) { in foldIntegers()
[all …]
DRem.java20 public Rem(NumericType type, Value dest, Value left, Value right) { in Rem()
39 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
43 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
47 public com.android.tools.r8.code.Instruction CreateFloat(int dest, int left, int right) { in CreateFloat()
51 public com.android.tools.r8.code.Instruction CreateDouble(int dest, int left, int right) { in CreateDouble()
55 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
59 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
63 public com.android.tools.r8.code.Instruction CreateFloat2Addr(int left, int right) { in CreateFloat2Addr()
67 public com.android.tools.r8.code.Instruction CreateDouble2Addr(int left, int right) { in CreateDouble2Addr()
95 int foldIntegers(int left, int right) { in foldIntegers()
[all …]
DDiv.java20 public Div(NumericType type, Value dest, Value left, Value right) { in Div()
39 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
43 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
47 public com.android.tools.r8.code.Instruction CreateFloat(int dest, int left, int right) { in CreateFloat()
51 public com.android.tools.r8.code.Instruction CreateDouble(int dest, int left, int right) { in CreateDouble()
55 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
59 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
63 public com.android.tools.r8.code.Instruction CreateFloat2Addr(int left, int right) { in CreateFloat2Addr()
67 public com.android.tools.r8.code.Instruction CreateDouble2Addr(int left, int right) { in CreateDouble2Addr()
95 int foldIntegers(int left, int right) { in foldIntegers()
[all …]
DLogicalBinop.java12 public LogicalBinop(NumericType type, Value dest, Value left, Value right) { in LogicalBinop()
16 public abstract com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right); in CreateInt()
18 public abstract Instruction CreateLong(int dest, int left, int right); in CreateLong()
20 public abstract Instruction CreateInt2Addr(int left, int right); in CreateInt2Addr()
22 public abstract Instruction CreateLong2Addr(int left, int right); in CreateLong2Addr()
38 int right = rightValue().getConstInstruction().asConstNumber().getIntValue(); in fold() local
45 long right; in fold() local
76 int right = builder.allocatedRegister(rightValue(), getNumber()); in buildDex() local
94 ConstNumber right = rightValue().getConstInstruction().asConstNumber(); in buildDex() local
102 int right = builder.allocatedRegister(rightValue(), getNumber()); in buildDex() local
DXor.java15 public Xor(NumericType type, Value dest, Value left, Value right) { in Xor()
35 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
40 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
46 assert dest != right + 1; in CreateLong() local
51 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
56 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
81 int foldIntegers(int left, int right) { in foldIntegers()
86 long foldLongs(long left, long right) { in foldLongs()
DOr.java15 public Or(NumericType type, Value dest, Value left, Value right) { in Or()
35 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
40 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
46 assert dest != right + 1; in CreateLong() local
51 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
56 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
80 int foldIntegers(int left, int right) { in foldIntegers()
84 long foldLongs(long left, long right) { in foldLongs()
DAnd.java16 public And(NumericType type, Value dest, Value left, Value right) { in And()
36 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
41 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
47 assert dest != right + 1; in CreateLong() local
52 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
57 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
82 int foldIntegers(int left, int right) { in foldIntegers()
87 long foldLongs(long left, long right) { in foldLongs()
DShr.java15 public Shr(NumericType type, Value dest, Value left, Value right) { in Shr()
41 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
46 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
51 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
56 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
81 int foldIntegers(int left, int right) { in foldIntegers()
86 long foldLongs(long left, long right) { in foldLongs()
DShl.java15 public Shl(NumericType type, Value dest, Value left, Value right) { in Shl()
41 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
46 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
51 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
56 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
81 int foldIntegers(int left, int right) { in foldIntegers()
86 long foldLongs(long left, long right) { in foldLongs()
DUshr.java15 public Ushr(NumericType type, Value dest, Value left, Value right) { in Ushr()
41 public com.android.tools.r8.code.Instruction CreateInt(int dest, int left, int right) { in CreateInt()
46 public com.android.tools.r8.code.Instruction CreateLong(int dest, int left, int right) { in CreateLong()
51 public com.android.tools.r8.code.Instruction CreateInt2Addr(int left, int right) { in CreateInt2Addr()
56 public com.android.tools.r8.code.Instruction CreateLong2Addr(int left, int right) { in CreateLong2Addr()
81 int foldIntegers(int left, int right) { in foldIntegers()
86 long foldLongs(long left, long right) { in foldLongs()
DBinop.java19 public Binop(NumericType type, Value dest, Value left, Value right) { in Binop()
88 int foldIntegers(int left, int right) { in foldIntegers()
92 long foldLongs(long left, long right) { in foldLongs()
96 float foldFloat(float left, float right) { in foldFloat()
100 double foldDouble(double left, double right) { in foldDouble()
DCmp.java27 public Cmp(NumericType type, Bias bias, Value dest, Value left, Value right) { in Cmp()
42 int right = builder.allocatedRegister(rightValue(), getNumber()); in buildDex() local
156 long right = rightValue().getConstInstruction().asConstNumber().getLongValue(); in fold() local
166 float right = rightValue().getConstInstruction().asConstNumber().getFloatValue(); in fold() local
175 double right = rightValue().getConstInstruction().asConstNumber().getDoubleValue(); in fold() local
/external/clang/test/SemaCXX/
Dcxx1y-variable-templates_in_class.cpp14 template<typename T, typename T0> static CONST T right = T(100); member in A
15 template<typename T> static CONST T right<T,int> = 5; member in A
16 …template<typename T> CONST int right<int,T>; // expected-error {{member 'right' declared as a tem… member in A
17 …template<typename T> CONST float right<float,T> = 5; // expected-error {{member 'right' declared … member in A
18 …template<> static CONST int right<int,int> = 7; // expected-error {{explicit specialization … member in A
19 …template<> static CONST float right<float,int>; // expected-error {{explicit specialization … member in A
20 …template static CONST int right<int,int>; // expected-error {{template specialization requires… member in A
26 template<typename T, typename T0> static CONST T right = T(100); member in out_of_line::B0
27 template<typename T> static CONST T right<T,int> = T(5); member in out_of_line::B0
29 template<> CONST int B0::right<int,int> = 7; member in out_of_line::B0
[all …]
/external/ltp/testcases/kernel/fs/dmapi/
Dright.c847 dm_right_t right; in DoTest() local
864 dm_right_t right; in DoTest() local
882 dm_right_t right; in DoTest() local
899 dm_right_t right; in DoTest() local
933 dm_right_t right; in DoTest() local
950 dm_right_t right; in DoTest() local
1000 dm_right_t right; in DoTest() local
1049 dm_right_t right; in DoTest() local
1066 dm_right_t right; in DoTest() local
1086 dm_right_t right; in DoTest() local
[all …]
/external/skia/src/core/
DSkTSort.h120 template <typename T, typename C> static void SkTInsertionSort(T* left, T* right, C lessThan) { in SkTInsertionSort()
138 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) { in SkTQSort_Partition()
165 template <typename T, typename C> void SkTIntroSort(int depth, T* left, T* right, C lessThan) { in SkTIntroSort()
193 template <typename T, typename C> void SkTQSort(T* left, T* right, C lessThan) { in SkTQSort()
203 template <typename T> void SkTQSort(T* left, T* right) { in SkTQSort()
208 template <typename T> void SkTQSort(T** left, T** right) { in SkTQSort()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DStateCluster.java35 public NFAState right; field in StateCluster
37 public StateCluster(NFAState left, NFAState right) { in StateCluster()
/external/skia/tests/
DCanvasStateHelpers.cpp17 float right, float bottom, int32_t spacer) { in complex_layers_draw()
29 float left, float top, float right, float bottom, int32_t spacer) { in complex_layers_draw_from_canvas_state()
39 int32_t right, int32_t bottom, int32_t clipOp, const SkRegion& localRegion) { in complex_clips_draw()
52 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp, in complex_clips_draw_from_canvas_state()
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DEquals.java45 public XObject operate(XObject left, XObject right) in operate()
66 XObject right = m_right.execute(xctxt, true); in bool() local
/external/eigen/unsupported/test/
Dcxx11_tensor_concatenation.cpp20 Tensor<int, 3, DataLayout> right(3, 3, 1); in test_dimension_failures() local
40 Tensor<int, 3, DataLayout> right(2, 3, 1); in test_static_dimension_failure() local
60 Tensor<int, 3, DataLayout> right(2, 3, 1); in test_simple_concatenation() local
/external/webrtc/webrtc/modules/video_render/mac/
Dvideo_render_mac_carbon_impl.cc123 const float right, in AddIncomingRenderStream()
160 float& right, in GetIncomingRenderStreamProperties()
231 const float right, in SetStreamCropping()
241 const float right, in ConfigureRenderer()
260 const float right, in SetText()
271 const float right, in SetBitmap()
/external/javassist/src/main/javassist/compiler/ast/
DDoubleConst.java44 public ASTree compute(int op, ASTree right) { in compute()
53 private DoubleConst compute0(int op, DoubleConst right) { in compute0()
64 private DoubleConst compute0(int op, IntConst right) { in compute0()

12345678910>>...32