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

1 2 3 4

  /external/clang/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Sema/
ParsedTemplate.h 62 /// \param TemplateLoc the location of the template name.
65 SourceLocation TemplateLoc)
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
  /external/clang/lib/Parse/
ParseTemplate.cpp 108 SourceLocation TemplateLoc;
109 if (!TryConsumeToken(tok::kw_template, TemplateLoc)) {
145 CurTemplateDepthTracker.getDepth(), ExportLoc, TemplateLoc, LAngleLoc,
279 = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
282 << SourceRange(TemplateInfo.TemplateLoc)
288 0, SourceLocation(), TemplateInfo.TemplateLoc, LAngleLoc, None,
569 SourceLocation TemplateLoc = ConsumeToken();
638 TemplateLoc, LAngleLoc,
657 return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc,
    [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]
  /external/clang/include/clang/AST/
DeclTemplate.h 53 SourceLocation TemplateLoc;
71 TemplateParameterList(SourceLocation TemplateLoc, SourceLocation LAngleLoc,
76 SourceLocation TemplateLoc,
131 SourceLocation getTemplateLoc() const { return TemplateLoc; }
136 return SourceRange(TemplateLoc, RAngleLoc);
155 FixedSizeTemplateParameterListStorage(SourceLocation TemplateLoc,
159 : List(TemplateLoc, LAngleLoc, Params, RAngleLoc) {
    [all...]
  /external/clang/lib/AST/
DeclTemplate.cpp 31 TemplateParameterList::TemplateParameterList(SourceLocation TemplateLoc,
35 : TemplateLoc(TemplateLoc), LAngleLoc(LAngleLoc), RAngleLoc(RAngleLoc),
58 const ASTContext &C, SourceLocation TemplateLoc, SourceLocation LAngleLoc,
62 return new (Mem) TemplateParameterList(TemplateLoc, LAngleLoc, Params,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclTemplate.h 55 SourceLocation TemplateLoc;
80 TemplateParameterList(SourceLocation TemplateLoc, SourceLocation LAngleLoc,
86 SourceLocation TemplateLoc,
152 SourceLocation getTemplateLoc() const { return TemplateLoc; }
157 return SourceRange(TemplateLoc, RAngleLoc);
182 FixedSizeTemplateParameterListStorage(SourceLocation TemplateLoc,
191 TemplateLoc, LAngleLoc, Params, RAngleLoc, RequiresClause))) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
DeclTemplate.h 55 SourceLocation TemplateLoc;
80 TemplateParameterList(SourceLocation TemplateLoc, SourceLocation LAngleLoc,
86 SourceLocation TemplateLoc,
152 SourceLocation getTemplateLoc() const { return TemplateLoc; }
157 return SourceRange(TemplateLoc, RAngleLoc);
182 FixedSizeTemplateParameterListStorage(SourceLocation TemplateLoc,
191 TemplateLoc, LAngleLoc, Params, RAngleLoc, RequiresClause))) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
DeclTemplate.h 55 SourceLocation TemplateLoc;
80 TemplateParameterList(SourceLocation TemplateLoc, SourceLocation LAngleLoc,
86 SourceLocation TemplateLoc,
152 SourceLocation getTemplateLoc() const { return TemplateLoc; }
157 return SourceRange(TemplateLoc, RAngleLoc);
182 FixedSizeTemplateParameterListStorage(SourceLocation TemplateLoc,
191 TemplateLoc, LAngleLoc, Params, RAngleLoc, RequiresClause))) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
DeclTemplate.h 55 SourceLocation TemplateLoc;
80 TemplateParameterList(SourceLocation TemplateLoc, SourceLocation LAngleLoc,
86 SourceLocation TemplateLoc,
152 SourceLocation getTemplateLoc() const { return TemplateLoc; }
157 return SourceRange(TemplateLoc, RAngleLoc);
182 FixedSizeTemplateParameterListStorage(SourceLocation TemplateLoc,
191 TemplateLoc, LAngleLoc, Params, RAngleLoc, RequiresClause))) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
DeclTemplate.h 55 SourceLocation TemplateLoc;
80 TemplateParameterList(SourceLocation TemplateLoc, SourceLocation LAngleLoc,
86 SourceLocation TemplateLoc,
152 SourceLocation getTemplateLoc() const { return TemplateLoc; }
157 return SourceRange(TemplateLoc, RAngleLoc);
182 FixedSizeTemplateParameterListStorage(SourceLocation TemplateLoc,
191 TemplateLoc, LAngleLoc, Params, RAngleLoc, RequiresClause))) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
DeclTemplate.h 55 SourceLocation TemplateLoc;
80 TemplateParameterList(SourceLocation TemplateLoc, SourceLocation LAngleLoc,
86 SourceLocation TemplateLoc,
152 SourceLocation getTemplateLoc() const { return TemplateLoc; }
157 return SourceRange(TemplateLoc, RAngleLoc);
182 FixedSizeTemplateParameterListStorage(SourceLocation TemplateLoc,
191 TemplateLoc, LAngleLoc, Params, RAngleLoc, RequiresClause))) {}
    [all...]

Completed in 1459 milliseconds

1 2 3 4