Searched defs:Bar (Results 1 - 25 of 83) sorted by relevance

1234

/external/chromium_org/v8/test/webkit/fast/js/
H A Dobject-prototype-constructor.js28 var Foo = { Bar: function () {}};
29 var f = new Foo.Bar();
30 shouldBe("f.constructor", "Foo.Bar");
34 var Foo2 = { Bar: F};
35 var f2 = new Foo2.Bar();
36 shouldBe("f2.constructor", "Foo2.Bar");
39 var Foo3 = { Bar: new Function("")};
40 var f3 = new Foo3.Bar();
41 shouldBe("f3.constructor", "Foo3.Bar");
/external/chromium_org/v8/test/webkit/
H A Dfunction-dot-length-read-only.js30 function Bar() { } class
31 Bar.prototype = foo;
33 var o = new Bar();
H A Dpolymorphic-construct.js32 function Bar() { class
50 shouldBe("construct(Bar).field", "'bar'");
/external/chromium_org/tools/clang/plugins/tests/
H A Dnested_class_inline_ctor.h14 class Bar { class in class:Foo
15 Bar() {} function in class:Foo::Bar
16 ~Bar() {}
/external/clang/test/CodeGenCXX/
H A Dcopy-initialization.cpp8 struct Bar { struct
9 Bar();
20 f(Bar());
H A D2005-02-19-UnnamedVirtualThunkArgument.cpp8 struct Bar { struct
9 Bar();
10 virtual ~Bar();
14 struct Baz : public Foo, public Bar {
/external/clang/test/SemaCXX/
H A Dtemplated-friend-decl.cpp6 struct Bar {}; struct in struct:Foo
8 // The templated declaration for class Bar should not be instantiated when
12 friend struct Bar;
H A Dzero-length-arrays.cpp12 class Bar { class
19 Bar(): foo_count(0) { } function in class:Bar
20 ~Bar() { }
24 Bar b;
25 Bar b2(b);
H A DPR9572.cpp9 struct Bar : public Foo { struct in inherits:Foo
10 Bar() { } // expected-note {{implicit destructor for 'Foo' first required here}} function in struct:Bar
H A DPR10447.cpp20 void f_test2(struct Bar*) { } argument
21 test2::Bar *ptr;
H A Dpr13394-crash-on-invalid.cpp21 void Bar() {} // expected-note{{'Bar' declared here}} function in struct:Foo::Base
27 Foo::Bar(); // expected-error{{no member named 'Bar' in namespace 'Foo'; did you mean simply 'Bar'?}}
/external/clang/test/SemaTemplate/
H A Dmissing-class-keyword-crash.cpp5 class Bar {}; class
7 class Bar<G> blah_test; // expected-error{{template argument for non-type template parameter must be an expression}}
/external/chromium_org/build/android/tests/symbolize/
H A Da.cc9 void Bar(const char* c);
14 void A::Bar(const char* c) {} function in class:A
/external/clang/test/PCH/
H A Dattrs-PR8406.c11 struct Bar struct
20 struct Bar bar;
H A Drdar10830559.cpp25 class Bar class in class:Foo
34 friend class Templated< Bar::BarImpl >::s;
/external/clang/test/Parser/
H A Dcxx-undeclared-identifier.cpp18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \ class in class:Foo
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dbasic.cpp14 E& Bar() { return Foo(C()); } function in class:E
19 e.Bar();
/external/clang/test/CodeGen/
H A D2003-10-09-UnionInitializerBug.c9 struct Bar { struct
16 struct Bar test = {0};
H A D2009-03-08-ZeroEltStructCrash.c12 static void Bar(struct Union *u) { function
H A D2009-06-18-StaticInitTailPadPack.c6 struct Bar { struct
12 struct Bar f1;
13 struct Bar f2;
/external/apache-harmony/support/src/test/resources/tests/resources/
H A Dhyts_Bar.serBar.java package foo.bar.execjartest foo.bar.execjartest.Bar extends java. ...
/external/chromium_org/ppapi/generators/test_cgen_range/
H A Dversions.h32 int32_t (*Bar)(int32_t x, int32_t y, int32_t z); member in struct:Foo_2_0
38 int32_t (*Bar)(int32_t x); member in struct:Foo_0_0
42 int32_t (*Bar)(int32_t x, int32_t y); member in struct:Foo_1_0
/external/chromium_org/v8/test/mjsunit/
H A Dinstanceof-2.js308 var Bar = function() { }
311 if (d) Bar.prototype = 13;
312 var x = a ? new Foo() : new Bar();
313 var y = b ? new Foo() : new Bar();
316 InstanceTest(x, Bar);
317 InstanceTest(y, Bar);
318 if (e) x.__proto__ = Bar.prototype;
327 InstanceTest(x, Bar);
328 InstanceTest(y, Bar);
/external/clang/test/Analysis/
H A Dmember-expr.cpp8 Bar = 1 enumerator in enum:EnumsViaMemberExpr::Foo::E
13 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
17 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
21 clang_analyzer_eval(Baz->Bar == Foo::Bar); // expected-warning{{TRUE}}
/external/v8/test/mjsunit/
H A Dinstanceof-2.js308 var Bar = function() { }
311 if (d) Bar.prototype = 13;
312 var x = a ? new Foo() : new Bar();
313 var y = b ? new Foo() : new Bar();
316 InstanceTest(x, Bar);
317 InstanceTest(y, Bar);
318 if (e) x.__proto__ = Bar.prototype;
327 InstanceTest(x, Bar);
328 InstanceTest(y, Bar);

Completed in 1452 milliseconds

1234