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

123456

/external/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/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
/external/clang/test/SemaCXX/
H A Dpredefined-expr.cpp21 int baz() { function
22 static_assert(sizeof(__func__) == 4, "baz");
23 static_assert(sizeof(__FUNCTION__) == 4, "baz");
24 static_assert(sizeof(__PRETTY_FUNCTION__) == 20, "int baz() [T = int]");
30 "auto baz()::<anonymous class>::operator()() const");
44 static_assert(sizeof(__func__) == 4, "baz");
45 static_assert(sizeof(__FUNCTION__) == 4, "baz");
46 static_assert(sizeof(__PRETTY_FUNCTION__) == 20, "int baz() [T = int]");
98 baz<int>();
/external/llvm/test/MC/AArch64/
H A Darm64-small-data-fixups.s8 baz: label
/external/llvm/test/MC/COFF/
H A Dseh-section.s94 .globl baz
95 .def baz; .scl 2; .type 32; .endef
96 .seh_proc baz
97 baz: label
/external/llvm/test/MC/MachO/
H A Dsection-align-2.s15 baz: label
109 // CHECK: ('_string', 'baz')
/external/llvm/test/MC/X86/AlignedBundling/
H A Dnesting.s41 # CHECK-LABEL: baz
42 baz: label
/external/mesa3d/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/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/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)));

Completed in 329 milliseconds

123456