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

  /external/clang/include/clang/AST/
DeclBase.h 239 /// DeclKind - This indicates which class this is.
240 unsigned DeclKind : 8;
316 Loc(L), DeclKind(DK), InvalidDecl(0),
326 : NextInContextAndBits(), DeclKind(DK), InvalidDecl(0),
368 Kind getKind() const { return static_cast<Kind>(DeclKind); }
845 return (DeclKind >= Decl::firstFunction &&
846 DeclKind <= Decl::lastFunction) ||
847 DeclKind == FunctionTemplate;
    [all...]
Comment.h 1014 enum DeclKind {
1064 /// Simplified kind of \c CommentDecl, see \c DeclKind enum.
1085 DeclKind getKind() const LLVM_READONLY {
1086 return static_cast<DeclKind>(Kind);
  /external/clang/lib/AST/
DeclBase.cpp 78 switch (DeclKind) {
98 switch (DeclKind) {
503 unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
504 switch (DeclKind) {
597 llvm_unreachable("Invalid DeclKind!");
847 if (DeclKind == Decl::Enum)
849 else if (DeclKind == Decl::LinkageSpec)
884 switch (DeclKind) {
919 if (DeclKind >= Decl::firstTag && DeclKind <= Decl::lastTag)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp 60 unsigned DeclKind = D->getKind();
62 CachedDeclCheckersMapTy::iterator CCI = CachedDeclCheckersMap.find(DeclKind);
67 checkers = &CachedDeclCheckersMap[DeclKind];
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 119 Decl::Kind DeclKind;
125 Decl::Kind DeclKind)
126 : Reader(Reader), FirstID(FirstID), Owning(true), DeclKind(DeclKind) { }
130 DeclKind(Other.DeclKind)
136 if (FirstID && Owning && isRedeclarableDeclKind(DeclKind) &&
    [all...]

Completed in 43 milliseconds