HomeSort by relevance Sort by last modified time
    Searched defs:Abstract (Results 1 - 9 of 9) sorted by null

  /external/clang/test/CXX/except/except.handle/
p16.cpp 32 struct Abstract {
38 } catch (Abstract) { // expected-error{{variable type 'Abstract' is an abstract class}}
  /external/clang/test/SemaCXX/
exceptions.cpp 5 struct Abstract { virtual void f() = 0; }; // expected-note {{unimplemented pure virtual method 'f'}}
17 } catch(Abstract) { // expected-error {{variable type 'Abstract' is an abstract class}}
101 // Cannot throw an abstract type.
106 throw *this; // expected-error{{cannot throw an object of abstract type 'foo'}}
vararg-non-pod.cpp 111 struct Abstract {
118 (void)__builtin_va_arg(list, Abstract); // expected-error{{second argument to 'va_arg' is of abstract type 'Abstract'}}
abstract.cpp 20 static_assert(__is_abstract(D), "D inherits from an abstract class");
26 static_assert(!__is_abstract(E), "E inherits from an abstract class but implements f");
28 C *d = new C; // expected-error {{allocating an object of abstract class type 'C'}}
30 C c; // expected-error {{variable type 'C' is an abstract class}}
31 void t1(C c); // expected-error {{parameter type 'C' is an abstract class}}
32 void t2(C); // expected-error {{parameter type 'C' is an abstract class}}
35 C c; // expected-error {{field type 'C' is an abstract class}}
41 C(); // expected-error {{allocating an object of abstract class type 'C'}}
42 t3(C()); // expected-error {{allocating an object of abstract class type 'C'}}
45 C e1[2]; // expected-error {{array of abstract class type 'C'}
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p1.cpp 14 // - an abstract class
15 struct Abstract { virtual void fn() = 0; }; // expected-note {{pure virtual}}
16 Abstract ar5[10]; // expected-error {{abstract class}}
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 22 // Returns the first and last non-abstract subrecords
33 // This might be the pseudo-node for Stmt; don't assume it has an Abstract
35 if (Base->getValue("Abstract") && !Base->getValueAsBit("Abstract"))
40 bool Abstract = R->getValueAsBit("Abstract");
48 if (Abstract)
63 if (!Abstract) {
  /external/clang/test/SemaTemplate/
instantiate-expr-4.cpp 190 struct Abstract {
196 template struct TypeId0<Abstract>;
instantiate-function-1.cpp 198 // expected-error{{abstract class}}
204 struct Abstract {
210 template struct TryCatch0<Abstract>; // expected-note{{instantiation}}
  /external/clang/include/clang/AST/
DeclCXX.h 312 /// Abstract - True when this class is abstract, i.e. has at least
314 bool Abstract : 1;
    [all...]

Completed in 328 milliseconds