Searched defs:value (Results 201 - 225 of 7904) sorted by relevance

1234567891011>>

/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp9.cpp7 static const bool value = 0; member in struct:X
12 static const bool value = 1; member in struct:X
15 int check0[X<1, 2>::value == 0? 1 : -1];
16 int check1[X<1, 1>::value == 1? 1 : -1];
19 static const unsigned value = 0; member in struct:int_values
24 static const unsigned value = 1; member in struct:int_values
27 int check2[int_values<256, 12, 3>::value == 0? 1 : -1];
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.spec.mfunc/
H A Dp1.cpp15 static T value; member in struct:A
20 template<class X> X A<X*, 2>::value; member in class:A
22 template<class X> A<X*, 2>::A(X) { value = 0; }
/external/clang/test/CodeGen/
H A D2007-02-04-AddrLValue.c7 char *value; member in struct:__anon18537
13 char *value; member in struct:__anon18538
/external/clang/test/CodeGenCXX/
H A Ddebug-info-union-template.cpp7 void g(float value) { argument
/external/clang/test/SemaCXX/
H A Dcxx11-user-defined-literals-unused.cpp4 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>(); }
H A Dissue547.cpp6 static const unsigned value = 0; member in struct:classify_function
11 static const unsigned value = 1; member in struct:classify_function
16 static const unsigned value = 2; member in struct:classify_function
21 static const unsigned value = 3; member in struct:classify_function
26 static const unsigned value = 4; member in struct:classify_function
31 static const unsigned value = 5; member in struct:classify_function
36 static const unsigned value = 6; member in struct:classify_function
41 static const unsigned value = 7; member in struct:classify_function
46 static const unsigned value = 8; member in struct:classify_function
51 static const unsigned value member in struct:classify_function
56 static const unsigned value = 10; member in struct:classify_function
[all...]
/external/clang/test/SemaTemplate/
H A Datomics.cpp5 template<typename T> T f(T* value) { argument
6 return __sync_add_and_fetch(value, 1);
/external/compiler-rt/test/asan/TestCases/Helpers/
H A Dinit-order-atexit-extra.cc5 C() { value = 42; }
7 int value; member in class:C
13 printf("C value: %d\n", c.value);
/external/compiler-rt/test/asan/TestCases/
H A Dinitialization-constexpr.cc18 int value; member in class:Integer
21 constexpr Integer(int x = 0) : value(x) {}
22 int getValue() {return value;}
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DConstants.java39 * Returns a rop constant for the specified value.
41 * @param value null, a boxed primitive, String, Class, or TypeId.
43 static TypedConstant getConstant(Object value) { argument
44 if (value == null) {
46 } else if (value instanceof Boolean) {
47 return CstBoolean.make((Boolean) value);
48 } else if (value instanceof Byte) {
49 return CstByte.make((Byte) value);
50 } else if (value instanceof Character) {
51 return CstChar.make((Character) value);
[all...]
/external/droiddriver/src/com/google/android/droiddriver/runner/
H A DMinSdkVersion.java29 * specified as its value.
42 int value(); method in interface:MinSdkVersion
/external/easymock/src/org/easymock/internal/
H A DArgumentToString.java27 public static void appendArgument(Object value, StringBuffer buffer) { argument
28 if (value == null) {
30 } else if (value instanceof String) {
32 buffer.append(value);
34 } else if (value instanceof Character) {
36 buffer.append(value);
38 } else if (value.getClass().isArray()) {
40 for (int i = 0; i < Array.getLength(value); i++) {
44 appendArgument(Array.get(value, i), buffer);
48 buffer.append(value);
[all...]
/external/emma/core/java12/com/vladium/util/
H A DIntegerFactory.java22 public static Integer getInteger (final int value) argument
26 final Object _result = s_values.get (value);
30 final Integer result = new Integer (value);
31 s_values.put (value, result);
/external/guava/guava/src/com/google/common/annotations/
H A DGwtIncompatible.java50 String value(); method in interface:GwtIncompatible
/external/hamcrest/src/org/hamcrest/internal/
H A DSelfDescribingValue.java7 private T value; field in class:SelfDescribingValue
9 public SelfDescribingValue(T value) { argument
10 this.value = value;
14 description.appendValue(value);
/external/harfbuzz_ng/src/
H A Dhb-shape.h45 uint32_t value; member in struct:hb_feature_t
/external/icu/icu4c/source/layout/
H A DLESwaps.h25 #define SWAPW(value) LESwaps::swapWord((le_uint16)(value))
33 #define SWAPL(value) LESwaps::swapLong((le_uint32)(value))
48 * Reads a big-endian 16-bit word and returns a native-endian value.
51 * @param value - the word to be byte swapped
57 static le_uint16 swapWord(le_uint16 value) argument
63 return value;
65 // Reads a big-endian value on any platform.
66 const le_uint8 *p = reinterpret_cast<const le_uint8 *>(&value);
81 swapLong(le_uint32 value) argument
[all...]
/external/jsr305/ri/src/main/java/javax/annotation/
H A DSyntax.java11 * This annotation a value that is of a particular syntax, such as Java syntax
37 * Syntax names can be followed by a colon and a list of key value pairs,
41 String value(); method in interface:Syntax
/external/jsr305/ri/src/main/java/javax/annotation/meta/
H A DTypeQualifierValidator.java9 * Given a type qualifier, check to see if a known specific constant value
14 * @param value
15 * the value to check
16 * @return a value indicating whether or not the value is an member of the
20 When forConstantValue(@Nonnull A annotation, Object value); argument
/external/jsr305/sampleUses/src/main/java/
H A DFixedLengthString.java13 int value(); method in interface:FixedLengthString
21 if (s.length() == annotation.value())
/external/junit/src/org/junit/experimental/categories/
H A DCategory.java8 * The value is an array of arbitrary classes.
42 Class<?>[] value(); method in interface:Category
/external/junit/src/org/junit/experimental/theories/
H A DParametersSuppliedBy.java10 Class<? extends ParameterSupplier> value(); method in interface:ParametersSuppliedBy
/external/libcxx/test/utilities/function.objects/arithmetic.operations/
H A Dtransparent.pass.cpp21 static const bool value = sizeof(__test<_Tp>(0)) == 1; member in struct:is_transparent
28 static_assert ( !is_transparent<std::plus<int>>::value, "" );
29 static_assert ( !is_transparent<std::plus<std::string>>::value, "" );
30 static_assert ( is_transparent<std::plus<void>>::value, "" );
31 static_assert ( is_transparent<std::plus<>>::value, "" );
33 static_assert ( !is_transparent<std::minus<int>>::value, "" );
34 static_assert ( !is_transparent<std::minus<std::string>>::value, "" );
35 static_assert ( is_transparent<std::minus<void>>::value, "" );
36 static_assert ( is_transparent<std::minus<>>::value, "" );
38 static_assert ( !is_transparent<std::multiplies<int>>::value, "" );
[all...]
/external/libcxx/test/utilities/function.objects/bitwise.operations/
H A Dtransparent.pass.cpp21 static const bool value = sizeof(__test<_Tp>(0)) == 1; member in struct:is_transparent
28 static_assert ( !is_transparent<std::bit_and<int>>::value, "" );
29 static_assert ( !is_transparent<std::bit_and<std::string>>::value, "" );
30 static_assert ( is_transparent<std::bit_and<void>>::value, "" );
31 static_assert ( is_transparent<std::bit_and<>>::value, "" );
33 static_assert ( !is_transparent<std::bit_or<int>>::value, "" );
34 static_assert ( !is_transparent<std::bit_or<std::string>>::value, "" );
35 static_assert ( is_transparent<std::bit_or<void>>::value, "" );
36 static_assert ( is_transparent<std::bit_or<>>::value, "" );
38 static_assert ( !is_transparent<std::bit_xor<int>>::value, "" );
[all...]
/external/libcxx/test/utilities/function.objects/comparisons/
H A Dtransparent.pass.cpp21 static const bool value = sizeof(__test<_Tp>(0)) == 1; member in struct:is_transparent
28 static_assert ( !is_transparent<std::less<int>>::value, "" );
29 static_assert ( !is_transparent<std::less<std::string>>::value, "" );
30 static_assert ( is_transparent<std::less<void>>::value, "" );
31 static_assert ( is_transparent<std::less<>>::value, "" );
33 static_assert ( !is_transparent<std::less_equal<int>>::value, "" );
34 static_assert ( !is_transparent<std::less_equal<std::string>>::value, "" );
35 static_assert ( is_transparent<std::less_equal<void>>::value, "" );
36 static_assert ( is_transparent<std::less_equal<>>::value, "" );
38 static_assert ( !is_transparent<std::equal_to<int>>::value, "" );
[all...]

Completed in 999 milliseconds

1234567891011>>