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

  /external/clang/include/clang/AST/
DeclBase.h 259 /// DeclKind - This indicates which class this is.
260 unsigned DeclKind : 7;
336 Loc(L), DeclKind(DK), InvalidDecl(0),
346 : NextInContextAndBits(), DeclKind(DK), InvalidDecl(0),
388 Kind getKind() const { return static_cast<Kind>(DeclKind); }
902 return (DeclKind >= Decl::firstFunction &&
903 DeclKind <= Decl::lastFunction) ||
904 DeclKind == FunctionTemplate;
    [all...]
Comment.h 1016 enum DeclKind {
1066 /// Simplified kind of \c CommentDecl, see \c DeclKind enum.
1087 DeclKind getKind() const LLVM_READONLY {
1088 return static_cast<DeclKind>(Kind);
  /external/clang/lib/AST/
DeclBase.cpp 104 switch (DeclKind) {
124 switch (DeclKind) {
592 unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
593 switch (DeclKind) {
701 llvm_unreachable("Invalid DeclKind!");
955 if (DeclKind == Decl::Enum)
957 else if (DeclKind == Decl::LinkageSpec)
992 switch (DeclKind) {
1029 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];

Completed in 90 milliseconds