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

1 2

  /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/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/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...]
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 {
220 const Abstract &a = true ? static_cast<const Abstract&>(Derived1()) : Derived2(); // expected-error {{allocating an object of abstract class type 'const Abstract'}}
    [all...]
  /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}}
instantiate-expr-4.cpp 190 struct Abstract {
196 template struct TypeId0<Abstract>;
  /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.
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 71 including parsers that take token input and use it to build Abstract Syntax
192 = ANTLR Abstract Syntax Trees
194 As ANTLR is concerned, an Abstract Syntax Tree (AST) node is an object that
198 The Tree module, like the Token and Stream modules, emulates an abstract base
305 A base implementation of an Abstract Syntax Tree Node. It mainly defines the
440 abstract :to_s
962 abstract :at
963 abstract :look
964 abstract :tree_source
965 abstract :token_strea
    [all...]
dot.rb 43 Abstract Syntax Tree nodes.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
h264bsd_interpolate_mid_hor.s 17 ;-- Abstract : ARMv6 optimized version horizontal part of
h264bsd_interpolate_hor_half.s 17 ;-- Abstract : ARMv6 optimized version of h264bsdInterpolateHorHalf function
h264bsd_interpolate_chroma_hor.s 17 ;-- Abstract : ARMv6 optimized version of h264bsdInterpolateChromaHor function
h264bsd_interpolate_chroma_hor_ver.s 17 ;-- Abstract : ARMv6 optimized version of h264bsdInterpolateChromaHorVer
  /external/antlr/antlr-3.4/runtime/Ruby/lib/
antlr3.rb 75 contains everything pertaining to Abstract Syntax Trees (ASTs). This script is
  /external/clang/lib/AST/
DeclCXX.cpp 43 Abstract(false), IsStandardLayout(true), HasNoNonEmptyBases(true),
452 // C++ [class.abstract]p2:
453 // A class is abstract if it has at least one pure virtual function.
454 data().Abstract = true;
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 160 * convert it into a much simpler Abstract Syntax Tree (AST),
564 /***** Stage 3: The Abstract Syntax Tree
573 * The Abstract Syntax Tree definition below is the only thing
621 Abstract Syntax Tree

Completed in 515 milliseconds

1 2