Searched defs:baz (Results 1 - 25 of 131) sorted by relevance

123456

/external/chromium_org/v8/test/mjsunit/
H A Dglobal-vars-with.js37 this.baz = 'fisk';
38 assertEquals('fisk', baz);
39 var baz; variable
40 assertEquals('fisk', baz);
41 var baz = 'hest'; variable
42 assertEquals('hest', baz);
H A Dproperty-object-key.js28 var key = { toString: function() { return 'baz'; } }
29 var object = { baz: 42 };
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D004-define-recursive.c2 #define bar baz
3 #define baz foo macro
6 baz
H A D007-define-composite-recursive.c2 #define bar b baz
3 #define baz c foo macro
6 baz
H A D030-define-chain-obj-to-func-compose.c1 #define baz(failure) failure macro
3 #define foo bar(baz(success))
H A D031-define-chain-func-to-func-compose.c1 #define baz(failure) failure macro
3 #define foo() bar(baz(success))
H A D061-define-chain-obj-to-func-multi.c3 #define baz bar macro
4 #define joe baz
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dloopadsz.asm6 baz: a16 loop baz ; 67 E2 FD label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
H A Dabs.asm5 baz db (foo>>24) define
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2226.js30 var baz = function() { 2; /* baz function */ }; function
32 var test = foo.test = bar.test = baz;
34 assertEquals(baz, test);
35 assertEquals(baz, foo.test);
36 assertEquals(baz, bar.test);
H A Dregress-348280.js7 function baz(f) { f(); } function
9 baz(goo);
10 baz(goo);
12 function bar(p) { if (p == 0) baz(1); }
H A Dregress-inlining-function-literal-context.js31 function baz() {
36 return baz;
39 var baz = mkbaz(1);
42 var f = baz();
/external/chromium_org/v8/test/webkit/
H A Ddfg-arguments-cross-code-origin.js39 function baz(x) { function
44 shouldBe("baz(42)", "42");
H A Ddfg-arguments-unexpected-escape.js28 function baz() { function
37 result += baz()[0];
H A Ddfg-cfa-prove-put-by-id-simple-when-storing-to-specialized-function.js41 function baz() { function
42 debug("baz!");
43 return "baz";
47 shouldBe("bar.call({f:baz}, baz)", "\"baz\"");
54 shouldBe("bar.call({f:baz}, fuzz)", "\"fuzz\"");
H A Ddfg-check-structure-elimination-for-non-cell.js39 function baz(i) { function
49 shouldBe("baz(i)", i == 190 ? "\"ERROR\"" : "66");
H A Ddfg-constant-fold-uncaptured-variable-that-is-later-captured.js34 function baz(a) { function
46 // The temporary variable corresponding to the first non-this argument to baz will be allocated to the same virtual
48 return baz(x);
H A Ddfg-inline-unused-this-method-check.js36 function baz(o, a, b) { function
52 shouldBe("baz(object, " + i + ", " + (i * 2) + ")", "" + (offset + i + i * 2));
H A Ddfg-inline-unused-this.js36 function baz(o, a, b) { function
55 shouldBe("baz(object, " + i + ", " + (i * 2) + ")", "" + (offset + i + i * 2));
H A Ddfg-inlining-reg-alloc.js155 function baz(a, b) { function
162 var o = baz(i, i + 1);
H A Ddfg-intrinsic-unused-this-method-check.js32 function baz(o, a, b) { function
48 shouldBe("baz(object, " + i + ", " + (i * 2) + ")", "" + (offset + Math.max(i, i * 2)));
H A Ddfg-intrinsic-unused-this.js32 function baz(o, a, b) { function
51 shouldBe("baz(object, " + i + ", " + (i * 2) + ")", "" + (offset + Math.max(i, i * 2)));
H A Ddfg-obvious-constant-cfa.js31 function baz() {
37 return x + a + b + baz();
H A Ddfg-side-effect-assignment-osr-exit.js37 return eval(baz);
40 var baz = "42"; variable
44 baz = "\"stuff\"";
45 shouldBe("foo(bar)", baz);
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp2.cpp9 template <typename> void baz() {} // expected-error{{templates cannot be declared inside of a local class}} function in struct:foo

Completed in 288 milliseconds

123456