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

1 2 3 4

  /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}}
overload-uneval.cpp 11 struct Bar
19 typedef Bar<T> B;
class-template-decl.cpp 63 template<typename T2> class Bar;
64 typedef Bar<T1> Baz;
67 struct Bar {
68 Bar() {}
74 Foo<int>::Bar<int> y(x);
  /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::__anon5009
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());
incomplete-types.cpp 5 struct Bar {
9 static struct Bar<int> bar[1] = { variable in typeref:struct:Bar
  /external/clang/test/PCH/
attrs-PR8406.c 11 struct Bar
20 struct Bar bar; local
  /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;
2009-03-08-ZeroEltStructCrash.c 12 static void Bar(struct Union *u) {
  /external/clang/test/SemaCXX/
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;
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}}
function-redecl.cpp 38 void Bar(); // expected-note {{'Bar' declared here}}
40 friend void bar(); // expected-error {{no matching function 'bar' found in local scope; did you mean 'Bar'}}
64 class Bar {
70 void Bar::f(Foo::Inner foo) { // expected-error {{out-of-line definition of 'f' does not match any declaration in 'Bar'}}
copy-initialization.cpp 22 void bar(); // expected-note{{declared here}}
26 void test(const foo *P) { P->bar(); } // expected-error{{'bar' not viable: 'this' argument has type 'const foo', but function is not marked const}}
34 struct Bar {
41 f(Bar()); // expected-error{{no viable constructor copying parameter of type 'const PR6757::Foo'}}
  /external/apache-harmony/support/src/test/resources/tests/resources/
hyts_Bar.ser 
  /external/clang/test/Parser/
cxx-undeclared-identifier.cpp 6 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \
  /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 13 E& Bar() { return Foo(C()); }
18 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
FooBar.java 19 public class FooBar<K,V,L> extends Foo<V> implements Bar<K> {
33 public K bar(K arg) { method in class:FooBar
41 public FooBar<V,K,L> b(Bar<? extends K> arg) {
  /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)
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 29 struct Bar;
36 int Foo(Bar *b, void (*Baz)(const T &t), T * = 0) {
41 int Quux(Bar *b, T * = 0)

Completed in 1396 milliseconds

1 2 3 4