HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 226 - 250 of 11796) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p9.cpp 7 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/
p1.cpp 15 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/CXX/temp/temp.spec/temp.explicit/
p4.cpp 12 static T value; // expected-note{{here}} member in struct:X0
17 template int X0<int>::value; // expected-error{{explicit instantiation of undefined static data member}} member in class:X0
28 template<> long X0<long>::value; // expected-note{{previous template specialization is here}} member in class:X0
29 template long X0<long>::value; // expected-warning{{explicit instantiation of 'value' that occurs after an explicit specialization will be ignored}} member in class:X0
  /external/clang/test/CodeGen/
2007-02-04-AddrLValue.c 7 char *value; member in struct:__anon14674
13 char *value; member in struct:__anon14675
  /external/clang/test/CodeGenCXX/
template-anonymous-types.cpp 9 T value; member in struct:X
10 X(T t) : value(t) {}
11 int f() { return value; }
  /external/clang/test/Headers/
arm64-apple-ios-types.cpp 5 static constexpr const bool value = true; member in struct:true_type
9 static constexpr const bool value = false; member in struct:false_type
16 static_assert(is_same<char, char>::value, "is_same is broken");
17 static_assert(!is_same<char, char *>::value, "is_same is broken");
21 static constexpr const bool value = member in struct:check_type
29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong");
31 static_assert(check_type<char, 1, 1>::value, "char is wrong");
32 static_assert(check_type<signed char, 1, 1>::value, "signed char is wrong");
33 static_assert(check_type<unsigned char, 1, 1>::value, "unsigned char is wrong");
35 static_assert(check_type<char16_t, 2, 2>::value, "char16_t is wrong")
    [all...]
thumbv7-apple-ios-types.cpp 5 static constexpr const bool value = true; member in struct:true_type
9 static constexpr const bool value = false; member in struct:false_type
16 static_assert(is_same<char, char>::value, "is_same is broken");
17 static_assert(!is_same<char, char *>::value, "is_same is broken");
21 static constexpr const bool value = member in struct:check_type
29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong");
31 static_assert(check_type<char, 1, 1>::value, "char is wrong");
32 static_assert(check_type<signed char, 1, 1>::value, "signed char is wrong");
33 static_assert(check_type<unsigned char, 1, 1>::value, "unsigned char is wrong");
35 static_assert(check_type<char16_t, 2, 2>::value, "char16_t is wrong")
    [all...]
x86_64-apple-macosx-types.cpp 5 static constexpr const bool value = true; member in struct:true_type
9 static constexpr const bool value = false; member in struct:false_type
16 static_assert(is_same<char, char>::value, "is_same is broken");
17 static_assert(!is_same<char, char *>::value, "is_same is broken");
21 static constexpr const bool value = member in struct:check_type
29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong");
31 static_assert(check_type<char, 1, 1>::value, "char is wrong");
32 static_assert(check_type<signed char, 1, 1>::value, "signed char is wrong");
33 static_assert(check_type<unsigned char, 1, 1>::value, "unsigned char is wrong");
35 static_assert(check_type<char16_t, 2, 2>::value, "char16_t is wrong")
    [all...]
  /external/clang/test/Modules/Inputs/PR27401/
a.h 5 static const _Tp value = _Tp(); member in struct:integral_constant
  /external/clang/test/Modules/
merge-using-decls.cpp 14 int value; // expected-note 0-1{{target of using}} member in struct:Y
19 int k = T().v + T().value; // expected-note 0-2{{instantiation of}}
40 // expected-error@b.h:* {{'E::value' from module 'B' is not present in definition of 'E<T>' in module 'A'}}
45 // expected-error@b.h:* {{'F::value' from module 'B' is not present in definition of 'F<T>' in module 'A'}}
54 // expected-error@a.h:* {{'D::value' from module 'A' is not present in definition of 'D<T>' in module 'B'}}
60 // expected-error@a.h:* {{'E::value' from module 'A' is not present in definition of 'E<T>' in module 'B'}}
66 // expected-error@a.h:* {{'F::value' from module 'A' is not present in definition of 'F<T>' in module 'B'}}
  /external/clang/test/SemaCXX/
cxx11-user-defined-literals-unused.cpp 4 double operator"" _x(long double value) { return double(value); }
5 int operator"" _ii(long double value) { return int(value); } // expected-warning {{not needed and will not be emitted}}
9 template<class T> double value() { return 3.2_x; } function in namespace:rdar13589856
12 double get_value() { return value<double>(); }
decltype-this.cpp 5 static const bool value = false; member in struct:is_same
9 static const bool value = true; member in struct:is_same
13 void f() { static_assert(is_same<decltype(this), S*>::value, ""); }
14 void g() const { static_assert(is_same<decltype(this), const S*>::value, ""); }
15 void h() volatile { static_assert(is_same<decltype(this), volatile S*>::value, ""); }
16 void i() const volatile { static_assert(is_same<decltype(this), const volatile S*>::value, ""); }
issue547.cpp 6 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 = 9 member in struct:classify_function
56 static const unsigned value = 10; member in struct:classify_function
    [all...]
  /external/compiler-rt/test/asan/TestCases/Helpers/
init-order-atexit-extra.cc 5 C() { value = 42; }
7 int value; member in class:C
13 printf("C value: %d\n", c.value);
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
WrappedAnnotationKey.java 24 StringKey value(); method in interface:WrappedAnnotationKey
  /external/droiddriver/src/io/appium/droiddriver/runner/
MinSdkVersion.java 28 * This annotation indicates that its target needs a minimum SDK version specified as its value.
40 int value(); method in interface:MinSdkVersion
  /external/guava/guava/src/com/google/common/annotations/
GwtIncompatible.java 51 String value(); method in interface:GwtIncompatible
  /external/guice/core/src/com/google/inject/name/
Named.java 36 String value(); method in interface:Named
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
ClassMapKey.java 36 Class<?> value(); method in interface:ClassMapKey
StringMapKey.java 36 String value(); method in interface:StringMapKey
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProvides.java 42 * The interface that provides this value, a subinterface of {@link CheckedProvider}.
44 Class<? extends CheckedProvider> value(); method in interface:CheckedProvides
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/
SelfDescribingValue.java 7 private T value; field in class:SelfDescribingValue
9 public SelfDescribingValue(T value) {
10 this.value = value;
15 description.appendValue(value);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
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) {
42 this.value = value;
    [all...]
OutputInt.java 23 * The value field.
29 public int value; field in class:OutputInt
32 * Constructs an <code>OutputInt</code> with value 0.
42 * Constructs an <code>OutputInt</code> with the given value.
44 * @param value the initial value
49 public OutputInt(int value) {
50 this.value = value;
61 return Integer.toString(value);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Output.java 18 * The value field
21 public T value; field in class:Output
29 return value == null ? "null" : value.toString();
41 * Constructs an <code>Output</code> with the given value.
42 * @param value the initial value
45 public Output(T value) {
46 this.value = value;
    [all...]

Completed in 1227 milliseconds

1 2 3 4 5 6 7 8 91011>>