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

  /external/clang/include/clang/Sema/
ParsedTemplate.h 186 TemplateIdAnnotation *TemplateId
189 TemplateId->NumArgs = NumArgs;
192 new (&TemplateId->SS) CXXScopeSpec();
195 ParsedTemplateArgument *TemplateArgs = TemplateId->getTemplateArgs();
199 List.push_back(TemplateId);
200 return TemplateId;
DeclSpec.h     [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp     [all...]
ParseExprCXX.cpp 201 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
202 SS = TemplateId->SS;
348 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
355 *LastII = TemplateId->Name;
365 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
366 TemplateId->NumArgs);
370 TemplateId->TemplateKWLoc,
371 TemplateId->Template,
372 TemplateId->TemplateNameLoc,
373 TemplateId->LAngleLoc
    [all...]
ParseDeclCXX.cpp 537 Range = SourceRange(Name.TemplateId->LAngleLoc,
538 Name.TemplateId->RAngleLoc);
886 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
887 if (TemplateId->Kind == TNK_Type_template ||
888 TemplateId->Kind == TNK_Dependent_template_name) {
    [all...]
Parser.cpp     [all...]
ParseExpr.cpp     [all...]
ParseTentative.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/clang/lib/Sema/
DeclSpec.cpp 39 void UnqualifiedId::setTemplateId(TemplateIdAnnotation *TemplateId) {
40 assert(TemplateId && "NULL template-id annotation?");
42 this->TemplateId = TemplateId;
43 StartLocation = TemplateId->TemplateNameLoc;
44 EndLocation = TemplateId->RAngleLoc;
47 void UnqualifiedId::setConstructorTemplateId(TemplateIdAnnotation *TemplateId) {
48 assert(TemplateId && "NULL template-id annotation?");
50 this->TemplateId = TemplateId;
    [all...]
SemaExprCXX.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaDecl.cpp     [all...]
SemaExpr.cpp     [all...]
SemaDeclCXX.cpp     [all...]

Completed in 2875 milliseconds