HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 276 - 300 of 13125) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGen/
2007-02-04-AddrLValue.c 7 char *value; member in struct:__anon15760
13 char *value; member in struct:__anon15761
  /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...]
OutputInt.java 21 * The value field.
27 public int value; field in class:OutputInt
30 * Constructs an <code>OutputInt</code> with value 0.
40 * Constructs an <code>OutputInt</code> with the given value.
42 * @param value the initial value
47 public OutputInt(int value) {
48 this.value = value;
59 return Integer.toString(value);
    [all...]
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
Const.java 16 private final double value; field in class:Const
18 public Const(final double value) {
19 this.value = value;
23 return value;
  /external/jsr305/ri/src/main/java/javax/annotation/
Syntax.java 11 * This annotation a value that is of a particular syntax, such as Java syntax
24 * Value indicating the particular syntax denoted by this annotation.
37 * Syntax names can be followed by a colon and a list of key value pairs,
41 String value(); method in interface:Syntax

Completed in 1342 milliseconds

<<11121314151617181920>>