Home
last modified time | relevance | path

Searched refs:foo1 (Results 1 – 25 of 131) sorted by relevance

123456

/external/webkit/LayoutTests/storage/domstorage/
Dremove-item-expected.txt10 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 …]
Dcomplex-values-expected.txt17 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/
Dattr-sentinel.c7 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/
DAbstractMapEntryTest.java62 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/
Dconst-cast.mm6 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/
Dswitch_thread.ll6 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/
Delfver.S17 .symver foo1, foo@VER1
18 .globl foo1 symbol
19 .type foo1, @function
20 foo1: label
/external/llvm/test/Linker/
D2008-06-26-AddressSpace.ll3 ; 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)"
D2008-06-13-LinkOnceRedefinition.ll3 ; 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
Dredefinition.ll3 ; 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/
Dalias-resolve.ll2 ; RUN: cat %t | grep foo1 | count 1
7 @foo1 = alias void ()* @foo2
15 call void @foo1()
/external/llvm/test/Integer/
Dpacked_bt.ll5 @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
DBitPacked.ll5 @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/
Dpacked.ll5 @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/
Dprovisional-ivar-lookup.m9 @property (readwrite, nonatomic) int foo, foo1, foo2, foo3;
16 @synthesize foo1;
23 _foo = foo1; // OK
/external/clang/test/CodeGen/
Dweak-incomplete.c4 void __attribute__((weak)) foo1(struct S);
5 void (*foo2)(struct S) = foo1;
Dsret.c9 struct abc foo1(void);
13 struct abc dummy1 = foo1(); in bar()
Ddllimport-dllexport.c3 void __attribute__((dllimport)) foo1();
4 void __attribute__((dllexport)) foo1(){} in foo1() function
/external/llvm/test/CodeGen/X86/
Dbool-zext.ll13 %call = tail call i32 (...)* @foo1(i32 %conv) nounwind
26 %call = tail call i32 (...)* @foo1(i32 %conv) nounwind
46 declare i32 @foo1(...)
D2006-12-19-IntelSyntax.ll24 call void (...)* @foo1( )
48 call void (...)* @foo1( )
76 declare void @foo1(...)
/external/clang/test/Parser/
Dnested-namespaces-recovery.cpp6 namespace foo1::foo2::foo3 { // expected-error {{nested namespace definition must define each names… namespace
11 return foo1::foo2::foo3::foo(x); in foo()
DMicrosoftExtensions.cpp8 int foo1([SA_Post(attr=1)] void *param);
177 void foo1() = 0;
182 void foo1();
189 a->foo1();
/external/llvm/test/CodeGen/Mips/
Dmips64lea.ll7 call void @foo1(i32* %a) nounwind
11 declare void @foo1(i32*)
/external/clang/test/SemaCXX/
Dbuiltin-ptrtomember-overload-1.cpp37 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/
Dsimple_stack2.cc7 void __attribute__((noinline)) foo1() { in foo1() function
15 foo1(); in bar1()

123456