/external/v8/test/mjsunit/regress/ |
H A D | regress-1491.js | 36 var value = "asdf"; variable 37 o.length = value; 38 assertEquals(value, o.length);
|
H A D | regress-crbug-451016.js | 7 var value = NaN; variable 9 value === "A" || value === "B";
|
/external/clang/test/Index/ |
H A D | load-classes.cpp | 4 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 D | objc_property.h | 4 int value; variable 10 @property int value; variable
|
H A D | multiple_decls.h | 3 struct wide { int value; }; member in struct:wide
|
/external/webrtc/talk/app/webrtc/objc/public/ |
H A D | RTCPair.h | 30 // 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 D | clz_mips.h | 96 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/chromium-trace/catapult/dashboard/dashboard/models/ |
H A D | page_state.py | 14 """An entity with a single blob value where id is a hash value.""" 16 value = ndb.BlobProperty(indexed=False) variable in class:PageState
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/ |
H A D | p1.cpp | 24 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 D | p2-0x.cpp | 14 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 D | p5-0x.cpp | 8 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 D | p8-0x.cpp | 8 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 D | catch-undef-behavior2.cpp | 3 bool GetOptionalBool(bool *value); 7 bool value; local 8 return GetOptionalBool(&value) ? value : default_value;
|
H A D | debug-info-ctor.cpp | 6 int value; member in struct:X 12 value = v;
|
H A D | forward-enum.cpp | 4 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 D | a.h | 2 enum { value = 0 }; enumerator in enum:is_floating::__anon2611
|
H A D | c.h | 2 enum { value = 0 }; enumerator in enum:is_floating::__anon2612 6 bool n20 = is_floating<int>::value;
|
/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 | warn-gnu-designators.c | 3 struct { int x, y, z[12]; } value = { x:17, .z [3 ... 5] = 7 }; variable in typeref:struct:__anon2844
|
/external/clang/test/SemaCXX/ |
H A D | lookup-member.cpp | 11 union value { union
|
/external/clang/test/SemaTemplate/ |
H A D | ackermann.cpp | 7 // 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::__anon3122 22 value = Ackermann<M-1, 1>::value enumerator in enum:Ackermann::__anon3123 28 value = N + 1 enumerator in enum:Ackermann::__anon3124 34 value enumerator in enum:Ackermann::__anon3125 [all...] |
H A D | alias-church-numerals.cpp | 29 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 D | echo-env.cc | 12 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 D | BooleanKey.java | 22 boolean value(); method in interface:BooleanKey
|
H A D | ByteKey.java | 22 byte value(); method in interface:ByteKey
|