HomeSort by relevance Sort by last modified time
    Searched refs:Abstract (Results 26 - 50 of 91) sorted by null

12 3 4

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_destructible.pass.cpp 50 class Abstract
52 virtual ~Abstract() = 0;
78 test_is_not_destructible<Abstract>();
is_trivially_default_constructible.pass.cpp 50 class Abstract
52 virtual ~Abstract() = 0;
65 test_has_not_trivial_default_constructor<Abstract>();
is_trivially_destructible.pass.cpp 50 class Abstract
52 virtual ~Abstract() = 0;
64 test_has_not_trivial_destructor<Abstract>();
is_trivially_move_constructible.pass.cpp 45 class Abstract
48 virtual ~Abstract() = 0;
74 test_has_not_trivial_move_constructor<Abstract>();
is_polymorphic.pass.cpp 50 class Abstract
52 virtual ~Abstract() = 0;
78 test_is_not_polymorphic<Abstract&>();
81 test_is_polymorphic<Abstract>();
is_nothrow_constructible.pass.cpp 63 class Abstract
65 virtual ~Abstract() = 0;
is_nothrow_destructible.pass.cpp 50 class Abstract
52 virtual ~Abstract() = 0;
63 test_has_not_nothrow_destructor<Abstract>();
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_polymorphic.pass.cpp 50 class Abstract
52 virtual ~Abstract() = 0;
78 test_is_not_polymorphic<Abstract&>();
81 test_is_polymorphic<Abstract>();
is_nothrow_constructible.pass.cpp 63 class Abstract
65 virtual ~Abstract() = 0;
is_nothrow_destructible.pass.cpp 50 class Abstract
52 virtual ~Abstract() = 0;
63 test_has_not_nothrow_destructor<Abstract>();
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
trace_after_dispatch.cpp 47 Abstract::traceAfterDispatch(visitor);
finalize_after_dispatch.cpp 60 Abstract::traceAfterDispatch(visitor);
  /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'}}
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...]
conditional-expr.cpp 60 struct Abstract {
61 virtual ~Abstract() = 0; // expected-note {{unimplemented pure virtual method '~Abstract' in 'Abstract'}}
64 struct Derived1: Abstract {
67 struct Derived2: Abstract {
230 const Abstract &abstract1 = true ? static_cast<const Abstract&>(Derived1()) : Derived2(); // expected-error {{allocating an object of abstract class type 'const Abstract'}}
    [all...]
vararg-non-pod.cpp 123 struct Abstract {
130 (void)__builtin_va_arg(list, Abstract); // expected-error{{second argument to 'va_arg' is of abstract type 'Abstract'}}
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /external/clang/test/SemaTemplate/
instantiate-function-1.cpp 198 // expected-error{{abstract class}}
204 struct Abstract {
210 template struct TryCatch0<Abstract>; // expected-note{{instantiation}}
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 70 // Returns the first and last non-abstract subrecords
81 // This might be the pseudo-node for Stmt; don't assume it has an Abstract
83 if (Base->getValue("Abstract") && !Base->getValueAsBit("Abstract"))
88 bool Abstract = R->getValueAsBit("Abstract");
96 if (Abstract)
111 if (!Abstract) {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Token.js 6 * @class Abstract base class of all token types.

Completed in 1800 milliseconds

12 3 4