Searched defs:bar (Results 126 - 150 of 658) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/webkit/
H A Ddfg-cfa-prove-put-by-id-simple-when-storing-to-specialized-function.js36 function bar(f) { function
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.js35 function bar() { function
41 return foo({f:42, g:bar}, i == 190);
H A Ddfg-constant-fold-uncaptured-variable-that-is-later-captured.js30 function bar() { function
40 // The temporary variable corresponding to the 'bar' callee coming out of the ternary expression will be allocated by
45 var x = (a + 1) + (p ? bar : bar)();
H A Ddfg-dead-unreachable-code-with-chain-of-dead-unchecked-nodes.js29 function bar(p) {
35 return bar;
H A Ddfg-ensure-non-array-array-storage-on-window.js35 function bar(array) { function
48 bar(otherArray);
66 bar(otherArray);
78 // At this point we check to make sure that bar doesn't end up either creating array storage for
82 bar(w);
H A Ddfg-flush-get-local.js39 function bar(a, b) { function
45 result += bar(i, 1000 - i);
H A Ddfg-inline-arguments-out-of-bounds.js36 function bar() { function
50 result = "" + bar();
H A Ddfg-inline-arguments-use-directly-from-inlined-code.js32 function bar(a,b,c) { function
47 shouldBe("argsToStr(bar(\"a\" + __i, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", b" + __i + ", c" + __i + "\"");
H A Ddfg-inline-arguments-use-from-getter.js35 function bar(o,b,c) { function
50 shouldBe("argsToStr(bar(o, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: [object Object], b" + __i + ", c" + __i + "\"");
H A Ddfg-inline-early-return.js34 function bar(a) { function
39 bar(i);
42 shouldBe("bar(42)", "42");
H A Ddfg-inline-new-array-buffer.js32 function bar() { function
37 bar();
41 shouldBe("bar()[0]", "1")
42 shouldBe("bar()[1]", "2")
43 shouldBe("bar()[2]", "3")
44 shouldBe("bar()[3]", "4")
H A Ddfg-inline-unused-this-method-check.js32 function bar(a, b) { function
44 functionToCall = bar;
H A Ddfg-inline-unused-this.js32 function bar(a, b) { function
44 functionToCall = bar;
H A Ddfg-inlining-reg-alloc.js38 function bar(a, b) { function
154 // Function into which we will inline foo but not bar.
156 return new foo(bar(2 * a + 1, b - 1), bar(2 * a, b - 1), a);
163 shouldBe("o.a", "bar(2 * i + 1, i)");
164 shouldBe("o.b", "bar(2 * i, i)");
H A Ddfg-int32-to-double-on-known-number.js31 function bar() {
37 return y + b + bar();
H A Ddfg-intrinsic-unused-this-method-check.js28 function bar(a, b) { function
40 functionToCall = bar;
H A Ddfg-intrinsic-unused-this.js28 function bar(a, b) { function
40 functionToCall = bar;
H A Ddfg-other-branch.js35 function bar(a) { function
46 bar({f:void(0)});
49 shouldBe("bar({f:i})", i ? "false" : "true");
H A Ddfg-putbyval-cfa-clobber.js32 function bar() {
35 theBar = bar;
H A Ddfg-side-effect-assignment-osr-exit.js35 function bar() { function
45 shouldBe("foo(bar)", baz);
/external/clang/test/Analysis/
H A Danalyzer-config.cpp4 void bar() {} function
5 void foo() { bar(); }
9 void bar() {} function in class:Foo
10 void foo() { bar(); }
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp2.cpp8 template <typename> struct bar {}; // expected-error{{templates cannot be declared inside of a local class}} struct in struct:foo
/external/clang/test/CodeGen/
H A D2003-11-16-StaticArrayInit.c3 void bar () { function
H A D2004-11-27-StaticFunctionRedeclare.c5 // referenced by bar().
9 // CHECK-LABEL: define void @bar(
13 void bar() { function
H A D2007-04-11-InlineAsmStruct.c4 int bar() { function
5 struct V bar; local
6 __asm__ volatile("foo %0\n" : "=r"(bar));
7 return bar.X;

Completed in 2173 milliseconds

1234567891011>>