Searched defs:value (Results 1 - 25 of 6124) sorted by relevance

1234567891011>>

/external/clang/test/Index/
H A Dload-classes.cpp4 X(int value);
23 X::X(int value) { argument
30 // CHECK: load-classes.cpp:4:9: ParmDecl=value:4:9 (Definition) Extent=[4:5 - 4:14]
51 // CHECK: load-classes.cpp:23:10: ParmDecl=value:23:10 (Definition) Extent=[23:6 - 23:15]
/external/clang/test/PCH/
H A Dobjc_property.h4 int value; variable
10 @property int value; variable
H A Dmultiple_decls.h3 struct wide { int value; }; member in struct:wide
/external/clang/tools/scan-build-py/tests/functional/src/
H A Dbroken-one.c3 int value(int in) function
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.native.obs/
H A Dnative.pass.cpp30 const char* const value = "hello world"; local
32 path p(value);
37 path p(value);
38 assert(p.native() == value);
/external/protobuf/objectivec/google/protobuf/
H A DWrappers.pbobjc.h43 /// The double value.
44 @property(nonatomic, readwrite) double value; variable
59 /// The float value.
60 @property(nonatomic, readwrite) float value; variable
75 /// The int64 value.
76 @property(nonatomic, readwrite) int64_t value; variable
91 /// The uint64 value.
92 @property(nonatomic, readwrite) uint64_t value; variable
107 /// The int32 value.
108 @property(nonatomic, readwrite) int32_t value; variable
124 @property(nonatomic, readwrite) uint32_t value; variable
140 @property(nonatomic, readwrite) BOOL value; variable
156 @property(nonatomic, readwrite, copy, null_resettable) NSString *value; variable
172 @property(nonatomic, readwrite, copy, null_resettable) NSData *value; variable
[all...]
/external/webrtc/talk/app/webrtc/objc/public/
H A DRTCPair.h30 // A class to hold a key and value.
34 @property(nonatomic, strong, readonly) NSString *value; variable
36 // Initialize a RTCPair object with a key and value.
37 - (id)initWithKey:(NSString *)key value:(NSString *)value;
/external/aac/libFDK/include/mips/
H A Dclz_mips.h96 inline INT fixnormz_D(LONG value) argument
99 __asm__ ("clz %0,%1" : "=d" (result) : "d" (value));
107 INT inline fixnormz_D(LONG value) argument
110 __asm__ ("clz %[result], %[value]" : [result] "=r" (result) : [value] "r" (value)) ;
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp1.cpp24 static int value; member in struct:X
28 int X<T>::value = 17; member in class:X
30 template static int X<int>::value; // expected-error{{explicit instantiation cannot have a storage class}} member in class:X
32 template<> static int X<float>::value; // expected-error{{'static' can only be specified inside the class definition}} member in class:X
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp2-0x.cpp14 static const bool value = false; member in struct:same_tuple
19 static const bool value = true; member in struct:same_tuple
22 int same_tuple_check1[same_tuple<tuple<int, float>, tuple<int, double>>::value? -1 : 1];
23 int same_tuple_check2[same_tuple<tuple<float, double>, tuple<float, double>>::value? 1 : -1];
H A Dp5-0x.cpp8 static const bool value = false; member in struct:has_nondeduced_pack_test
14 static const bool value = true; member in struct:has_nondeduced_pack_test
21 int(float, double)>::value? 1 : -1];
H A Dp8-0x.cpp8 static const unsigned value = 0; member in struct:member_pointer_kind
13 static const unsigned value = 1; member in struct:member_pointer_kind
18 static const unsigned value = 2; member in struct:member_pointer_kind
23 static const unsigned value = 3; member in struct:member_pointer_kind
28 static const unsigned value = 4; member in struct:member_pointer_kind
33 static const unsigned value = 5; member in struct:member_pointer_kind
38 static const unsigned value = 6; member in struct:member_pointer_kind
43 static_assert(member_pointer_kind<int (X::*)(int)>::value == 1, "");
44 static_assert(member_pointer_kind<int (X::*)(int) &>::value == 2, "");
45 static_assert(member_pointer_kind<int (X::*)(int) &&>::value
[all...]
/external/clang/test/CodeGenCXX/
H A Dcatch-undef-behavior2.cpp3 bool GetOptionalBool(bool *value);
7 bool value; local
8 return GetOptionalBool(&value) ? value : default_value;
H A Ddebug-info-ctor.cpp6 int value; member in struct:X
12 value = v;
H A Dforward-enum.cpp4 void bar(MyEnum value) { } argument
7 void foo(MyEnum value) argument
10 bar(value);
/external/clang/test/Modules/Inputs/merge-anon-in-template/
H A Da.h2 enum { value = 0 }; enumerator in enum:is_floating::__anon2644
H A Dc.h2 enum { value = 0 }; enumerator in enum:is_floating::__anon2645
6 bool n20 = is_floating<int>::value;
/external/clang/test/Sema/
H A Darm-microsoft-intrinsics.c3 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 Dwarn-gnu-designators.c3 struct { int x, y, z[12]; } value = { x:17, .z [3 ... 5] = 7 }; variable in typeref:struct:__anon2919
/external/clang/test/SemaCXX/
H A Dlookup-member.cpp11 union value { union
/external/clang/test/SemaTemplate/
H A Dackermann.cpp7 // value = M ? (N ? Ackermann<M-1, Ackermann<M, N-1> >::value
8 // : Ackermann<M-1, 1>::value)
16 value = Ackermann<M-1, Ackermann<M, N-1>::value >::value enumerator in enum:Ackermann::__anon3213
22 value = Ackermann<M-1, 1>::value enumerator in enum:Ackermann::__anon3214
28 value = N + 1 enumerator in enum:Ackermann::__anon3215
34 value enumerator in enum:Ackermann::__anon3216
[all...]
H A Dalias-church-numerals.cpp29 template<typename T, T N> struct Const { static const T value = N; }; member in struct:Const
34 using Arr = int[TwoHundredAndFiftySix<Increment, Const<int, 0>>::value];
/external/compiler-rt/test/asan/TestCases/Helpers/
H A Decho-env.cc12 const char *value = getenv(argv[1]); local
13 if (value) {
14 printf("%s = %s\n", argv[1], value);
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
H A DBooleanKey.java22 boolean value(); method in interface:BooleanKey
H A DByteKey.java22 byte value(); method in interface:ByteKey

Completed in 488 milliseconds

1234567891011>>