HomeSort by relevance Sort by last modified time
    Searched defs:Bar (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/clang/test/Parser/
cxx-undeclared-identifier.cpp 6 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \
  /external/clang/test/CodeGenCXX/
2005-02-19-UnnamedVirtualThunkArgument.cpp 8 struct Bar {
9 Bar();
10 virtual ~Bar();
14 struct Baz : public Foo, public Bar {
copy-initialization.cpp 8 struct Bar {
9 Bar();
20 f(Bar());
incomplete-types.cpp 5 struct Bar {
9 static struct Bar<int> bar[1] = { variable in typeref:struct:Bar
union-dtor.cpp 11 struct Bar {
12 Bar();
13 ~Bar();
20 Bar bar; member in union:FooBar
28 Bar bar; member in union:Variant::__anon5493
35 // The ctor and dtor of Foo<> and Bar should not be mentioned in the resulting
  /external/clang/test/SemaCXX/
templated-friend-decl.cpp 6 struct Bar {};
8 // The templated declaration for class Bar should not be instantiated when
12 friend struct Bar;
zero-length-arrays.cpp 11 class Bar {
18 Bar(): foo_count(0) { }
19 ~Bar() { }
23 Bar b;
24 Bar b2(b);
PR9572.cpp 9 struct Bar : public Foo {
10 Bar() { } // expected-note {{implicit default destructor for 'Foo' first required here}}
pseudo-destructors.cpp 5 typedef Foo Bar; // expected-note{{type 'Bar' (aka 'Foo') is declared here}}
28 a->~Bar(); // expected-error{{destructor type 'Bar' (aka 'Foo') in object destruction expression does not match the type 'A' of the object being destroyed}}
30 f->~Bar();
32 i->~Bar(); // expected-error{{does not match}}
34 g().~Bar(); // expected-error{{non-scalar}}
36 f->::~Bar();
39 f->::~Bar(17, 42); // expected-error{{cannot have any arguments}}
using-decl-templates.cpp 57 template <class T> struct Bar : public Foo<T>, Baz {
64 template int Bar<int>::foo();
  /external/clang/test/SemaTemplate/
missing-class-keyword-crash.cpp 5 class Bar {};
7 class Bar<G> blah_test; // expected-error{{template argument for non-type template parameter must be an expression}}
instantiate-subscript.cpp 39 void Bar() {
instantiate-deeply.cpp 29 struct Bar {
33 Bar u;
overload-uneval.cpp 11 struct Bar
19 typedef Bar<T> B;
  /build/tools/droiddoc/test/generics/src/com/android/generics/
Bar.java 19 public interface Bar<K> {
20 public K bar(K arg); method in interface:Bar
  /external/clang/test/PCH/
attrs-PR8406.c 11 struct Bar
20 struct Bar bar; local
rdar10830559.cpp 25 class Bar
34 friend class Templated< Bar::BarImpl >::s;
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
basic.cpp 13 E& Bar() { return Foo(C()); }
18 e.Bar();
  /external/clang/test/CodeGen/
2003-10-09-UnionInitializerBug.c 9 struct Bar {
16 struct Bar test = {0};
2009-03-08-ZeroEltStructCrash.c 12 static void Bar(struct Union *u) {
2009-06-18-StaticInitTailPadPack.c 6 struct Bar {
12 struct Bar f1;
13 struct Bar f2;
  /external/apache-harmony/support/src/test/resources/tests/resources/
hyts_Bar.ser 
  /libcore/support/src/test/java/tests/resources/
hyts_Bar.ser 
  /external/v8/test/mjsunit/
instanceof-2.js 308 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);
  /ndk/tests/device/test-basic-rtti/jni/
test_basic_rtti.cpp 28 class Bar: public Foo
33 std::printf("in Bar!\n");
39 Foo* foo = new Bar();
40 Bar* bar; local
42 bar = dynamic_cast<Bar*>(foo);
43 if (bar != NULL) {
44 printf("OK: 'foo' is pointing to a Bar class instance.\n");
46 fprintf(stderr, "KO: Could not dynamically cast 'foo' to a 'Bar*'\n")
    [all...]

Completed in 521 milliseconds

1 2 3