Searched defs:Bar (Results 26 - 50 of 103) sorted by relevance

12345

/external/chromium_org/ppapi/generators/test_cgen_range/
H A Dversions.h33 int32_t (*Bar)(int32_t x, int32_t y, int32_t z); member in struct:Foo_2_0
39 int32_t (*Bar)(int32_t x); member in struct:Foo_0_0
43 int32_t (*Bar)(int32_t x, int32_t y); member in struct:Foo_1_0
/external/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dbar_with_relro.cpp25 extern "C" void Bar() { function
28 fprintf(stderr, "Hi There! from Bar\n");
/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dconst-scoped_refptr&-to-raw-adds-get-expected.cc11 class Bar { class
20 Bar b;
H A Dconst-scoped_refptr&-to-raw-adds-get-original.cc11 class Bar { class
20 Bar b;
H A Dtest5-expected.cc11 struct Bar : public Foo { struct in inherits:Foo
21 scoped_refptr<Bar> temp(new Bar);
H A Dtest5-original.cc11 struct Bar : public Foo { struct in inherits:Foo
21 scoped_refptr<Bar> temp(new Bar);
H A Dtest8-expected.cc11 struct Bar : public Foo { struct in inherits:Foo
21 // Bar* -> Foo* conversion).
23 scoped_refptr<Bar>* heap_allocated = new scoped_refptr<Bar>();
24 *heap_allocated = new Bar;
H A Dtest8-original.cc11 struct Bar : public Foo { struct in inherits:Foo
21 // Bar* -> Foo* conversion).
23 scoped_refptr<Bar>* heap_allocated = new scoped_refptr<Bar>();
24 *heap_allocated = new Bar;
/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);
H A Dfield-type-tracking.js153 function Bar(x) { this.x = x; this.b = x; } class
156 var b = new Bar({a:2});
/external/clang/test/CodeGen/
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/clang/test/SemaCXX/
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/lldb/test/lang/cpp/breakpoints/
H A Dnested.cpp5 namespace Bar namespace in namespace:Foo
64 Foo::Bar::Baz mine(200);
65 Foo::Bar::Baz2 mine2(300);
71 printf ("And got %d from Bar.\n", Foo::Bar::Function());
/external/clang/test/Analysis/
H A Dmember-expr.cpp9 Bar = 1 enumerator in enum:EnumsViaMemberExpr::Foo::E
14 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
18 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
22 clang_analyzer_eval(Baz->Bar == Foo::Bar); // expected-warning{{TRUE}}
/external/clang/test/CodeGenCXX/
H A Ddebug-info-decl-nested.cpp38 // CHECK1: [[DECL:[0-9]+]] = {{.*}} ; [ DW_TAG_subprogram ] [line [[@LINE+2]]] [private] [Bar]
39 // CHECK1: metadata {{.*}}, metadata ![[DECL]], metadata {{.*}}, i32 [[@LINE+4]]} ; [ DW_TAG_subprogram ] [line [[@LINE+4]]] [def] [Bar]
40 void Bar(const Foo1 *);
43 void OuterClass1::Bar(const Foo1 *meta) { } function in class:OuterClass1
H A Dincomplete-types.cpp6 struct Bar { struct
10 static struct Bar<int> bar[1] = {
H A Dunion-dtor.cpp11 struct Bar { struct
12 Bar();
13 ~Bar();
20 Bar bar;
28 Bar bar;
35 // The ctor and dtor of Foo<> and Bar should not be mentioned in the resulting
/external/clang/test/SemaTemplate/
H A Dfunction-template-specialization.cpp53 static void Bar(const T& input);
57 static void Bar(const long& input) {} // expected-error{{explicit specialization of 'Bar' in class scope}} function in class:Foo
H A Dinstantiate-deeply.cpp30 struct Bar { struct in class:Foo
34 Bar u;
H A Dinstantiate-subscript.cpp39 void Bar() { function
H A Doverload-uneval.cpp12 struct Bar struct
20 typedef Bar<T> B;
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dservice_reflection_test.py80 self.assertEqual('Method Bar not implemented.',
87 def Bar(self, rpc_controller, request, done): member in class:FooUnitTest.testService.MyServiceImpl
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp14.cpp62 class Bar { class
70 void M2::MInner::Bar::bar() {

Completed in 341 milliseconds

12345