HomeSort by: relevance | last modified time | path
    Searched defs:Instantiation (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DependenceFlags.h 21 // cause instantiation to fail
24 // Note that C++ standard doesn't define the instantiation-dependent term,
27 Instantiation = 2,
41 TypeInstantiation = Type | Instantiation,
42 ValueInstantiation = Value | Instantiation,
43 TypeValueInstantiation = Type | Value | Instantiation,
60 Instantiation = 2,
75 DependentInstantiation = Dependent | Instantiation,
86 Instantiation = 2, \
91 DependentInstantiation = Dependent | Instantiation, \
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateVariadic.cpp 710 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Instantiation
713 if (Instantiation->is<DeclArgumentPack *>()) {
715 NewPackSize = Instantiation->get<DeclArgumentPack *>()->size();
828 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Instantiation
831 if (Instantiation->is<Decl*>())
836 unsigned Size = Instantiation->get<DeclArgumentPack *>()->size();
1268 // if the operator is not listed [above], the instantiation is ill-formed.
SemaTemplate.cpp 442 // finds a non-dependent member or member of the current instantiation that
784 NamedDecl *Instantiation,
790 assert(isa<TagDecl>(Instantiation) || isa<FunctionDecl>(Instantiation) ||
791 isa<VarDecl>(Instantiation));
816 if (TagDecl *TD = dyn_cast<TagDecl>(Instantiation))
825 Instantiation->setInvalidDecl();
827 if (isa<FunctionDecl>(Instantiation)) {
830 << /*member function*/ 1 << Instantiation->getDeclName()
831 << Instantiation->getDeclContext()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp 87 /// instantiation.
89 /// The location of the instantiation.
92 /// The buffer where parsing should resume upon instantiation completion.
95 /// The location where parsing should resume upon instantiation completion.
98 /// The depth of TheCondStack at the start of the instantiation.
303 /// Are we inside a macro instantiation?
306 /// Handle entry to macro instantiation.
309 /// \param NameLoc Instantiation location.
312 /// Handle exit from macro instantiation.
800 "Unexpected active macro instantiation!");
    [all...]
MasmParser.cpp 86 /// Helper class for storing information about an active macro instantiation.
88 /// The location of the instantiation.
91 /// The buffer where parsing should resume upon instantiation completion.
94 /// The location where parsing should resume upon instantiation completion.
97 /// The depth of TheCondStack at the start of the instantiation.
553 /// Are we inside a macro instantiation?
556 /// Handle entry to macro instantiation.
559 /// \param NameLoc Instantiation location.
570 /// Handle exit from macro instantiation.
1050 "Unexpected active macro instantiation!");
    [all...]

Completed in 22 milliseconds