/external/webkit/LayoutTests/storage/domstorage/ |
D | remove-item-expected.txt | 10 PASS storage.foo1 is undefined. 11 storage.foo1 = 'bar' 12 PASS storage.foo1 is "bar" 13 storage.removeItem('foo1') 14 PASS storage.foo1 is undefined. 15 storage.removeItem('foo1') 16 PASS storage.foo1 is undefined. 39 PASS storage.foo1 is undefined. 40 storage.foo1 = 'bar' 41 PASS storage.foo1 is "bar" [all …]
|
D | complex-values-expected.txt | 17 storage.foo1 = null 18 PASS typeof storage['foo1'] is "string" 19 PASS storage['foo1'] is "null" 20 PASS typeof storage.foo1 is "string" 21 PASS storage.foo1 is "null" 22 PASS typeof storage.getItem('foo1') is "string" 23 PASS storage.getItem('foo1') is "null" 117 storage.foo1 = null 118 PASS typeof storage['foo1'] is "string" 119 PASS storage['foo1'] is "null" [all …]
|
/external/clang/test/Sema/ |
D | attr-sentinel.c | 7 void foo1 (int x, ...) ATTR; // expected-note 3 {{function has been explicitly marked sentinel here… 14 #define FOOMACRO(...) foo1(__VA_ARGS__) 17 foo1(1, NULL); // OK in test1() 18 foo1(1, 0) ; // expected-warning {{missing sentinel in function call}} in test1() 33 foo1(3, &a, &b, &c); // expected-warning {{missing sentinel in function call}} in test1() 34 foo1(3, &a, &b, &c, (struct A*) 0); in test1()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | AbstractMapEntryTest.java | 62 Entry<String, Integer> foo1 = entry("foo", 1); 63 assertEquals(foo1, foo1); 64 assertEquals(control("foo", 1), foo1); 67 assertFalse(foo1.equals(control("bar", 1))); 68 assertFalse(foo1.equals(new Object())); 69 assertFalse(foo1.equals(null));
|
/external/clang/test/SemaObjCXX/ |
D | const-cast.mm | 6 const Foo *foo1 = 0; 7 Foo *foo2 = foo1; // expected-error {{cannot initialize}} 11 const Foo *foo1 = 0; 12 Foo *foo2 = const_cast<Foo*>(foo1);
|
/external/llvm/test/Transforms/SimplifyCFG/ |
D | switch_thread.ll | 6 declare void @foo1() 20 call void @foo1( ) 34 call void @foo1( ) 58 call void @foo1( ) 70 call void @foo1( ) 71 call void @foo1( ) 74 call void @foo1( )
|
/external/llvm/test/Object/Inputs/ |
D | elfver.S | 17 .symver foo1, foo@VER1 18 .globl foo1 symbol 19 .type foo1, @function 20 foo1: label
|
/external/llvm/test/Linker/ |
D | 2008-06-26-AddressSpace.ll | 3 ; RUN: llvm-as %s -o %t.foo1.bc 5 ; RUN: llvm-link %t.foo2.bc %t.foo1.bc -S | grep "addrspace(2)" 6 ; RUN: llvm-link %t.foo1.bc %t.foo2.bc -S | grep "addrspace(2)"
|
D | 2008-06-13-LinkOnceRedefinition.ll | 3 ; RUN: llvm-as %s -o %t.foo1.bc 6 ; RUN: llvm-link %t.foo1.bc %t.foo2.bc -S 7 ; RUN: llvm-link %t.foo1.bc %t.foo3.bc -S
|
D | redefinition.ll | 3 ; RUN: llvm-as %s -o %t.foo1.bc 6 ; RUN: not llvm-link %t.foo1.bc %t.foo2.bc -o %t.bc 2>&1 | \ 8 ; RUN: not llvm-link %t.foo1.bc %t.foo3.bc -o %t.bc 2>&1 | \
|
/external/llvm/test/Transforms/GlobalOpt/ |
D | alias-resolve.ll | 2 ; RUN: cat %t | grep foo1 | count 1 7 @foo1 = alias void ()* @foo2 15 call void @foo1()
|
/external/llvm/test/Integer/ |
D | packed_bt.ll | 5 @foo1 = external global <4 x float> 11 store <4 x float> <float 1.0, float 2.0, float 3.0, float 4.0>, <4 x float>* @foo1 13 %l1 = load <4 x float>* @foo1
|
D | BitPacked.ll | 5 @foo1 = external global <4 x float> 11 store <4 x float> <float 1.0, float 2.0, float 3.0, float 4.0>, <4 x float>* @foo1 13 %l1 = load <4 x float>* @foo1
|
/external/llvm/test/Feature/ |
D | packed.ll | 5 @foo1 = external global <4 x float> ; <<4 x float>*> [#uses=2] 9 …loat 1.000000e+00, float 2.000000e+00, float 3.000000e+00, float 4.000000e+00 >, <4 x float>* @foo1 11 %l1 = load <4 x float>* @foo1 ; <<4 x float>> [#uses=0]
|
/external/clang/test/SemaObjC/ |
D | provisional-ivar-lookup.m | 9 @property (readwrite, nonatomic) int foo, foo1, foo2, foo3; 16 @synthesize foo1; 23 _foo = foo1; // OK
|
/external/clang/test/CodeGen/ |
D | weak-incomplete.c | 4 void __attribute__((weak)) foo1(struct S); 5 void (*foo2)(struct S) = foo1;
|
D | sret.c | 9 struct abc foo1(void); 13 struct abc dummy1 = foo1(); in bar()
|
D | dllimport-dllexport.c | 3 void __attribute__((dllimport)) foo1(); 4 void __attribute__((dllexport)) foo1(){} in foo1() function
|
/external/llvm/test/CodeGen/X86/ |
D | bool-zext.ll | 13 %call = tail call i32 (...)* @foo1(i32 %conv) nounwind 26 %call = tail call i32 (...)* @foo1(i32 %conv) nounwind 46 declare i32 @foo1(...)
|
D | 2006-12-19-IntelSyntax.ll | 24 call void (...)* @foo1( ) 48 call void (...)* @foo1( ) 76 declare void @foo1(...)
|
/external/clang/test/Parser/ |
D | nested-namespaces-recovery.cpp | 6 namespace foo1::foo2::foo3 { // expected-error {{nested namespace definition must define each names… namespace 11 return foo1::foo2::foo3::foo(x); in foo()
|
D | MicrosoftExtensions.cpp | 8 int foo1([SA_Post(attr=1)] void *param); 177 void foo1() = 0; 182 void foo1(); 189 a->foo1();
|
/external/llvm/test/CodeGen/Mips/ |
D | mips64lea.ll | 7 call void @foo1(i32* %a) nounwind 11 declare void @foo1(i32*)
|
/external/clang/test/SemaCXX/ |
D | builtin-ptrtomember-overload-1.cpp | 37 void foo1(C1 c1, int A::* pmf) { in foo1() function 42 void foo1(C1 c1, int E::* pmf) { in foo1() function
|
/external/compiler-rt/lib/tsan/output_tests/ |
D | simple_stack2.cc | 7 void __attribute__((noinline)) foo1() { in foo1() function 15 foo1(); in bar1()
|