| /external/chromium_org/v8/test/mjsunit/ |
| arguments-escape.js | 28 function foo(x) { function 39 var baz = foo(0);
|
| object-prevent-extensions.js | 109 function foo() { function 113 Object.preventExtensions(foo); 115 foo.x = 29; 116 assertEquals(undefined, foo.x);
|
| regexp-static.js | 125 assertEquals(["foo",undefined], /foo(?:a(x))?/.exec("foobx"), 131 var haystack = "foo"; 132 var re_text = "^foo"; 147 RegExp.multiline = "foo"; 154 var foo = "lsdfj sldkfj sdklfj læsdfjl sdkfjlsdk fjsdl fjsdljskdj flsj flsdkj flskd regexp: /foobar/\nldkfj sdlkfj sdkl"; variable 155 assertTrue(/^([a-z]+): (.*)/.test(foo.substring(foo.indexOf("regexp:"))), "regexp: setup");
|
| /external/chromium_org/v8/test/webkit/ |
| dfg-arguments-out-of-bounds.js | 30 function foo() { function 49 result = "" +foo.apply(void 0, args);
|
| /external/clang/test/CodeGenCXX/ |
| apple-kext-no-staticinit-section.C | 9 class foo { class 11 foo(); 12 virtual ~foo(); 15 foo a; 16 foo b; 17 foo c; 18 foo::~foo() {}
|
| cxx-apple-kext.cpp | 18 // CHECK-KEXT: call void @_ZN3fooD1Ev(%class.foo* @a) 20 class foo { class 22 foo(); 23 virtual ~foo(); 26 foo a; 27 foo::~foo() {}
|
| /art/test/300-package-override/src/p1/ |
| BaseClass.java | 20 public void run() { foo(); } method 21 void foo() { System.out.println("passed"); } // It should not be possible to override this. method in class:BaseClass
|
| /art/test/300-package-override/src/p2/ |
| DerivedClass.java | 20 void foo() { System.out.println("DerivedClass overrode package-private method!"); } // This should not override BaseClass.foo. method in class:DerivedClass
|
| /art/test/AbstractMethod/ |
| AbstractClass.java | 18 // foo. 22 abstract void foo(); method in class:AbstractClass 28 void foo() { method in class:ConcreteClass
|
| /development/ndk/samples/module-exports/jni/foo/ |
| foo.c | 1 #include "foo.h" 4 /* FOO should be defined to '2' when building foo.c */ 5 #ifndef FOO 6 #error FOO is not defined here ! 9 #if FOO != 2 10 #error FOO is incorrectly defined here ! 16 int foo(int x) function 18 LOGI("foo(%d) called !", x);
|
| /external/chromium_org/third_party/libsrtp/srtp/crypto/include/ |
| null_auth.h | 51 char foo; member in struct:__anon16467
|
| null_cipher.h | 55 char foo ;/* empty, for now */ member in struct:__anon16468
|
| /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/ |
| 004-define-recursive.c | 1 #define foo bar macro 3 #define baz foo 4 foo
|
| 007-define-composite-recursive.c | 1 #define foo a bar macro 3 #define baz c foo 4 foo
|
| 030-define-chain-obj-to-func-compose.c | 3 #define foo bar(baz(success)) macro 4 foo
|
| 031-define-chain-func-to-func-compose.c | 3 #define foo() bar(baz(success)) macro 4 foo()
|
| 056-macro-argument-with-comma.c | 3 #define foo function macro 4 foo(bar)
|
| 061-define-chain-obj-to-func-multi.c | 1 #define foo(x) success macro 2 #define bar foo
|
| /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/ |
| value-err.asm | 5 mov ax, label wrt foo 6 foo: label
|
| /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
| loopadsz.asm | 2 foo: a32 loop foo ; 67 E2 FD label
|
| ripseg.asm | 2 foo: label 5 mov rbx, [foo] 6 mov rbx, [es:foo] 7 mov rbx, [fs:foo] 8 mov rbx, [gs:foo] 9 mov rbx, [rel es:foo] 10 mov rbx, [rel fs:foo] 11 mov rbx, [rel gs:foo] 12 mov rbx, [abs es:foo] 13 mov rbx, [abs fs:foo] [all...] |
| segoff.asm | 3 foo equ 1:2 define 4 jmp far[foo] 5 mov ax,[foo] 6 push dword [foo] 7 mov ax,foo
|
| /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/ |
| abs.asm | 2 foo: resb 1 label 4 bar dd foo 5 baz db (foo>>24)
|
| /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/ |
| export.asm | 1 export foo 4 foo: label
|
| /external/chromium_org/v8/test/mjsunit/regress/ |
| consolidated-holey-load.js | 30 function foo(array) { function 36 foo(b); // Observe fast elements first, or the IC will transition without 37 foo(a); // going polymorphic. 38 %OptimizeFunctionOnNextCall(foo); 40 assertEquals(undefined, foo(c)); // Elided hole check will leak the hole.
|