/external/guava/guava/src/com/google/common/collect/ |
D | ComparisonChain.java | 119 @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/ |
D | Sub.java | 25 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 …]
|
D | ArithmeticBinop.java | 13 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 …]
|
D | Add.java | 20 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 …]
|
D | Mul.java | 20 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 …]
|
D | Rem.java | 20 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 …]
|
D | Div.java | 20 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 …]
|
D | LogicalBinop.java | 12 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
|
D | Xor.java | 15 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()
|
D | Or.java | 15 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()
|
D | And.java | 16 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()
|
D | Shr.java | 15 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()
|
D | Shl.java | 15 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()
|
D | Ushr.java | 15 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()
|
D | Binop.java | 19 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()
|
D | Cmp.java | 27 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/ |
D | cxx1y-variable-templates_in_class.cpp | 14 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/ |
D | right.c | 847 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/ |
D | SkTSort.h | 120 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/ |
D | StateCluster.java | 35 public NFAState right; field in StateCluster 37 public StateCluster(NFAState left, NFAState right) { in StateCluster()
|
/external/skia/tests/ |
D | CanvasStateHelpers.cpp | 17 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/ |
D | Equals.java | 45 public XObject operate(XObject left, XObject right) in operate() 66 XObject right = m_right.execute(xctxt, true); in bool() local
|
/external/eigen/unsupported/test/ |
D | cxx11_tensor_concatenation.cpp | 20 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/ |
D | video_render_mac_carbon_impl.cc | 123 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/ |
D | DoubleConst.java | 44 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()
|