HomeSort by relevance Sort by last modified time
    Searched refs:Tmpl (Results 1 - 14 of 14) sorted by null

  /external/clang/test/SemaTemplate/
class-template-ctor-initializer.cpp 17 template<typename T> struct Tmpl { };
21 struct TmplC : Tmpl<int> {
23 Tmpl<int>(),
28 struct TmplD : Tmpl<char>, TmplB<char> {
30 Tmpl<int>(), // expected-error {{type 'Tmpl<int>' is not a direct or virtual base of 'TmplD'}}
  /external/clang/tools/libclang/
CIndexCXX.cpp 118 } else if (RedeclarableTemplateDecl *Tmpl
120 Template = Tmpl->getInstantiatedFromMemberTemplate();
  /external/clang/include/clang/Sema/
Template.h 410 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
411 bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl);
Sema.h     [all...]
  /external/clang/lib/AST/
DeclTemplate.cpp 128 RedeclarableTemplateDecl *Tmpl = this;
129 while (Tmpl->getPreviousDeclaration())
130 Tmpl = Tmpl->getPreviousDeclaration();
131 return Tmpl;
    [all...]
ASTContext.cpp 529 ASTContext::setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl,
533 assert(Tmpl->isStaticDataMember() && "Not a static data member");
537 = new (*this) MemberSpecializationInfo(Tmpl, TSK, PointOfInstantiation);
605 FieldDecl *Tmpl) {
607 assert(!Tmpl->getDeclName() && "Template field decl is not unnamed");
611 InstantiatedFromUnnamedFieldDecl[Inst] = Tmpl;
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 62 const Decl *Tmpl, Decl *New) {
63 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
    [all...]
SemaLookup.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 698 if (FieldDecl *Tmpl = ReadDeclAs<FieldDecl>(Record, Idx))
699 Reader.getContext().setInstantiatedFromUnnamedFieldDecl(FD, Tmpl);
729 VarDecl *Tmpl = ReadDeclAs<VarDecl>(Record, Idx);
732 Reader.getContext().setInstantiatedFromStaticDataMember(VD, Tmpl, TSK,POI);
    [all...]
  /external/clang/include/clang/AST/
ASTContext.h 419 /// the static data member template \p Tmpl of a class template.
420 void setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl,
439 void setInstantiatedFromUnnamedFieldDecl(FieldDecl *Inst, FieldDecl *Tmpl);
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-type-util.h     [all...]

Completed in 689 milliseconds