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

1 2 3 4 5

  /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}}
  /external/clang/test/Analysis/
member-expr.cpp 8 Bar = 1
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}}
  /ndk/tests/device/test-stlport_shared-exception/jni/
ctor1.cpp 18 struct Bar
20 ~Bar()
32 Bar f;
delete3.cpp 29 struct Bar : virtual Foo {
34 delete [] new Bar[2];
  /ndk/tests/device/test-stlport_static-exception/jni/
ctor1.cpp 18 struct Bar
20 ~Bar()
32 Bar f;
delete3.cpp 29 struct Bar : virtual Foo {
34 delete [] new Bar[2];
  /external/clang/test/CodeGenCXX/
2005-02-19-UnnamedVirtualThunkArgument.cpp 8 struct Bar {
9 Bar();
10 virtual ~Bar();
14 struct Baz : public Foo, public 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::__anon6576
35 // The ctor and dtor of Foo<> and Bar should not be mentioned in the resulting
copy-initialization.cpp 8 struct Bar {
9 Bar();
20 f(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/SemaCXX/
zero-length-arrays.cpp 12 class Bar {
19 Bar(): foo_count(0) { }
20 ~Bar() { }
24 Bar b;
25 Bar b2(b);
PR9572.cpp 9 struct Bar : public Foo {
10 Bar() { } // expected-note {{implicit default destructor for 'Foo' first required here}}
templated-friend-decl.cpp 6 struct Bar {};
8 // The templated declaration for class Bar should not be instantiated when
12 friend struct Bar;
PR10447.cpp 20 void f(struct Bar*) { }
21 test2::Bar *ptr;
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}}
  /external/clang/test/CodeGen/
2003-10-09-UnionInitializerBug.c 9 struct Bar {
16 struct Bar test = {0};
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 
  /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...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
basic.cpp 14 E& Bar() { return Foo(C()); }
19 e.Bar();
  /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/Index/
complete-qualified.cpp 9 C<Foo, class Bar> c;
17 // CHECK-CC1: FieldDecl:{ResultType C<Foo, class Bar>}{TypedText c} (35)
print-type.cpp 10 struct Bar {
11 Bar(outer::Foo<bool>* foo) { };
33 // CHECK: StructDecl=Bar:10:8 (Definition) [type=outer::inner::Bar] [typekind=Record] [isPOD=0]
34 // CHECK: CXXConstructor=Bar:11:3 (Definition) [type=void (outer::Foo<bool> *)] [typekind=FunctionProto] [canonicaltype=void (outer::Foo<bool> *)] [canonicaltypekind=FunctionProto] [resulttype=void] [resulttypekind=Void] [args= [outer::Foo<bool> *] [Pointer]] [isPOD=0]

Completed in 441 milliseconds

1 2 3 4 5