/external/clang/test/Sema/ |
H A D | arm-microsoft-intrinsics.c | 3 unsigned int test_MoveFromCoprocessor(const unsigned int value) { argument 4 return _MoveFromCoprocessor(value, 1, 2, 3, 4); // expected-error-re {{argument to {{.*}} must be a constant integer}} 7 void test_MoveToCoprocessor(const unsigned int value) { argument 8 _MoveToCoprocessor(1, 2, value, 3, 4, 5); // expected-error-re {{argument to {{.*}} must be a constant integer}}
|
H A D | inline-asm-validate-tmpl.cpp | 6 template <int N> void test(int value) argument 8 asm("rol %1, %0" :"=r"(value): "I"(N + 1)); // expected-error{{value '301' out of range for constraint 'I'}} 15 template <int N> void testb(int value) argument 17 asm("rol %1, %0" :"=r"(value): "I"(301)); // expected-error{{value '301' out of range for constraint 'I'}} 21 template <int N> void testc(int value) argument 23 asm("rol %1, %0" :"=r"(value): "I"(N + 1));
|
/external/r8/src/test/examples/shaking14/ |
H A D | Superclass.java | 7 static int aMethod(int value) { argument 8 return value; 11 static double anotherMethod(double value) { argument 12 return value;
|
H A D | Subclass.java | 7 static int aMethod(int value) { argument 8 return value + 42; 11 static double anotherMethod(double value) { argument 12 return value + 42;
|
/external/smali/util/src/main/java/org/jf/util/ |
H A D | NibbleUtils.java | 37 * byte of the given value 38 * @param value the value to extract the nibble from 39 * @return the extracted signed nibble value 41 public static int extractHighSignedNibble(int value) { argument 42 return (value << 24) >> 28; 47 * byte of the given value 48 * @param value the value to extract the nibble from 49 * @return the extracted signed nibble value 51 extractLowSignedNibble(int value) argument 61 extractHighUnsignedNibble(int value) argument 71 extractLowUnsignedNibble(int value) argument [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
H A D | MutableInteger.java | 35 public int value; field in class:MutableInteger 39 public MutableInteger(int value) { argument 40 this.value = value;
|
/external/clang/test/CodeGenCXX/ |
H A D | catch-undef-behavior2.cpp | 3 bool GetOptionalBool(bool *value); 7 bool value; local 8 return GetOptionalBool(&value) ? value : default_value;
|
H A D | forward-enum.cpp | 4 void bar(MyEnum value) { } argument 7 void foo(MyEnum value) argument 10 bar(value);
|
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/ |
H A D | Const.java | 16 private final double value; field in class:Const 18 public Const(final double value) { argument 19 this.value = value; 23 return value;
|
/external/proguard/src/proguard/gui/splash/ |
H A D | ConstantDouble.java | 30 private final double value; field in class:ConstantDouble 35 * @param value the constant value. 37 public ConstantDouble(double value) argument 39 this.value = value; 47 return value;
|
H A D | ConstantInt.java | 30 private final int value; field in class:ConstantInt 35 * @param value the constant value. 37 public ConstantInt(int value) argument 39 this.value = value; 47 return value;
|
/external/fdlibm/ |
H A D | s_ldexp.c | 18 double ieee_ldexp(double value, int exp) argument 20 double ieee_ldexp(value, exp) 21 double value; int exp; 24 if(!ieee_finite(value)||value==0.0) return value; 25 value = ieee_scalbn(value,exp); 26 if(!ieee_finite(value)||value [all...] |
/external/clang/test/SemaTemplate/ |
H A D | fibonacci.cpp | 8 enum { value = FibonacciEval<I-1>::value + FibonacciEval<I-2>::value }; enumerator in enum:Fibonacci::__anon3274 13 enum { value = Fibonacci<I>::value }; enumerator in enum:FibonacciEval::__anon3275 17 enum { value = 0 }; enumerator in enum:Fibonacci::__anon3276 21 enum { value = 1 }; enumerator in enum:Fibonacci::__anon3277 24 int array5[Fibonacci<5>::value == 5? 1 : -1]; 25 int array10[Fibonacci<10>::value == 55? 1 : -1]; 32 static const unsigned value member in struct:Fibonacci2 38 static const unsigned value = Fibonacci2<I>::value; member in struct:FibonacciEval2 42 static const unsigned value = 0; member in struct:Fibonacci2 46 static const unsigned value = 1; member in struct:Fibonacci2 54 static const unsigned value = Fibonacci3<I-1>::value + Fibonacci3<I-2>::value; member in struct:Fibonacci3 58 static const unsigned value = 0; member in struct:Fibonacci3 62 static const unsigned value = 1; member in struct:Fibonacci3 [all...] |
H A D | temp_class_spec_blocks.cpp | 5 static const bool value = false; member in struct:is_unary_block 10 static const bool value = true; member in struct:is_unary_block 13 int is_unary_block0[is_unary_block<int>::value ? -1 : 1]; 14 int is_unary_block1[is_unary_block<int (^)()>::value ? -1 : 1]; 15 int is_unary_block2[is_unary_block<int (^)(int, bool)>::value ? -1 : 1]; 16 int is_unary_block3[is_unary_block<int (^)(bool)>::value ? 1 : -1]; 17 int is_unary_block4[is_unary_block<int (^)(int)>::value ? 1 : -1]; 21 static const bool value = false; member in struct:is_unary_block_with_same_return_type_as_argument_type 26 static const bool value = true; member in struct:is_unary_block_with_same_return_type_as_argument_type 29 int is_unary_block5[is_unary_block_with_same_return_type_as_argument_type<int>::value [all...] |
/external/vixl/src/ |
H A D | compiler-intrinsics-vixl.cc | 32 int CountLeadingSignBitsFallBack(int64_t value, int width) { argument 34 if (value >= 0) { 35 return CountLeadingZeros(value, width) - 1; 37 return CountLeadingZeros(~value, width) - 1; 42 int CountLeadingZerosFallBack(uint64_t value, int width) { argument 44 if (value == 0) { 48 value = value << (64 - width); 49 if ((value & UINT64_C(0xffffffff00000000)) == 0) { 51 value 77 CountSetBitsFallBack(uint64_t value, int width) argument 112 CountTrailingZerosFallBack(uint64_t value, int width) argument [all...] |
/external/clang/test/SemaCXX/ |
H A D | cxx11-user-defined-literals-unused.cpp | 4 double operator"" _x(long double value) { return double(value); } argument 5 int operator"" _ii(long double value) { return int(value); } // expected-warning {{not needed and will not be emitted}} argument 9 template<class T> double value() { return 3.2_x; } function in namespace:rdar13589856 12 double get_value() { return value<double>(); }
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
H A D | Output.java | 18 * The value field 20 public T value; field in class:Output 27 return value == null ? "null" : value.toString(); 38 * Constructs an <code>Output</code> with the given value. 39 * @param value the initial value 41 public Output(T value) { argument 42 this.value = value; [all...] |
/external/messageformat/java/com/ibm/icu/util/ |
H A D | Output.java | 16 * The value field 19 public T value; field in class:Output 26 return value == null ? "null" : value.toString(); 38 * Constructs an <code>Output</code> withe the given value. 39 * @param value the initial value 42 public Output(T value) { argument 43 this.value = value; [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
H A D | DERBoolean.java | 11 * @param value 13 public DERBoolean(boolean value) argument 15 super(value); 18 DERBoolean(byte[] value) argument 20 super(value);
|
/external/clang/test/Modules/Inputs/merge-anon-in-template/ |
H A D | b.h | 2 bool k = is_floating<int>::value;
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/ |
H A D | AspectRatio.java | 34 private int value; field in class:AspectRatio 36 private AspectRatio(int value) { argument 37 this.value = value; 40 public static AspectRatio fromValue(int value) { argument 41 if (value == Extended_SAR.value) { 44 return new AspectRatio(value); 48 return value;
|
/external/proguard/src/proguard/evaluation/value/ |
H A D | ConvertedByteValue.java | 21 package proguard.evaluation.value; 24 * This IntegerValue represents a byte value that is converted from an 25 * integer value. 31 private final IntegerValue value; field in class:ConvertedByteValue 35 * Creates a new converted byte value of the given integer value. 37 public ConvertedByteValue(IntegerValue value) argument 39 this.value = value; 49 this.value [all...] |
H A D | ConvertedCharacterValue.java | 21 package proguard.evaluation.value; 24 * This IntegerValue represents a character value that is converted from an 25 * integer value. 31 private final IntegerValue value; field in class:ConvertedCharacterValue 35 * Creates a new converted character value of the given integer value. 37 public ConvertedCharacterValue(IntegerValue value) argument 39 this.value = value; 49 this.value [all...] |
H A D | ConvertedDoubleValue.java | 21 package proguard.evaluation.value; 24 * This DoubleValue represents a double value that is converted from another 25 * scalar value. 31 private final Value value; field in class:ConvertedDoubleValue 35 * Creates a new converted double value of the given value. 37 public ConvertedDoubleValue(Value value) argument 39 this.value = value; 49 this.value [all...] |
H A D | ConvertedFloatValue.java | 21 package proguard.evaluation.value; 24 * This FloatValue represents a float value that is converted from another 25 * scalar value. 31 private final Value value; field in class:ConvertedFloatValue 35 * Creates a new converted float value of the given value. 37 public ConvertedFloatValue(Value value) argument 39 this.value = value; 49 this.value [all...] |