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 246 /// DeclKind - This indicates which class this is.
247 unsigned DeclKind : 8;
307 Loc(L), DeclKind(DK), InvalidDecl(0),
317 : NextInContextAndBits(), DeclKind(DK), InvalidDecl(0),
371 Kind getKind() const { return static_cast<Kind>(DeclKind); }
    [all...]
Comment.h 995 enum DeclKind {
1045 /// Simplified kind of \c CommentDecl, see \c DeclKind enum.
1066 DeclKind getKind() const LLVM_READONLY {
1067 return static_cast<DeclKind>(Kind);
  /external/clang/lib/AST/
DeclBase.cpp 73 switch (DeclKind) {
92 switch (DeclKind) {
482 unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
483 switch (DeclKind) {
576 llvm_unreachable("Invalid DeclKind!");
791 if (DeclKind == Decl::Enum)
793 else if (DeclKind == Decl::LinkageSpec)
810 switch (DeclKind) {
845 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 116 Decl::Kind DeclKind;
122 Decl::Kind DeclKind)
123 : Reader(Reader), FirstID(FirstID), Owning(true), DeclKind(DeclKind) { }
127 DeclKind(Other.DeclKind)
133 if (FirstID && Owning && isRedeclarableDeclKind(DeclKind) &&
    [all...]

Completed in 261 milliseconds