Home
last modified time | relevance | path

Searched refs:isInSystemHeader (Results 1 – 25 of 58) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DExtractAPIVisitor.h166 bool isInSystemHeader(const Decl *D) { in isInSystemHeader() function
284 isInSystemHeader(Decl)); in VisitVarDecl()
594 Access, isInSystemHeader(Decl)); in VisitCXXRecordDecl()
662 Signature, Access, isInSystemHeader(Decl)); in VisitCXXMethodDecl()
668 Signature, Access, isInSystemHeader(Decl)); in VisitCXXMethodDecl()
701 isInSystemHeader(Decl)); in VisitCXXConstructorDecl()
757 isInSystemHeader(Decl)); in VisitConceptDecl()
787 isInSystemHeader(Decl)); in VisitClassTemplateSpecializationDecl()
820 isInSystemHeader(Decl)); in VisitClassTemplatePartialSpecializationDecl()
1098 isInSystemHeader(Decl)); in VisitTypedefNameDecl()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Edit/
H A DCommit.cpp239 if (SM.isInSystemHeader(loc)) in canInsert()
269 if (SM.isInSystemHeader(loc)) in canInsertAfterToken()
305 if (SM.isInSystemHeader(range.getBegin()) || in canRemoveRange()
306 SM.isInSystemHeader(range.getEnd())) in canRemoveRange()
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DSourceLocation.cpp255 bool FullSourceLoc::isInSystemHeader() const { in isInSystemHeader() function in FullSourceLoc
257 return SrcMgr->isInSystemHeader(*this); in isInSystemHeader()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DTaggedUnionModeling.h44 if (Call.isInSystemHeader()) in removeInformationStoredForDeadInstances()
H A DErrnoModeling.cpp84 return ACtx.getSourceManager().isInSystemHeader(VD->getLocation()) && in REGISTER_TRAIT_WITH_PROGRAMSTATE()
107 return ACtx.getSourceManager().isInSystemHeader(FD->getLocation()) && in getErrnoFunc()
H A DSimpleStreamChecker.cpp206 if (!Call.isInSystemHeader()) in guaranteedNotToCloseFile()
H A DUnreachableCodeChecker.cpp168 if (SM.isInSystemHeader(SL) || SM.isInExternCSystemHeader(SL)) in checkEndAnalysis()
H A DTrustNonnullChecker.cpp82 if (!Call.isInSystemHeader()) in checkPostCall()
H A DErrnoChecker.cpp207 C.getSourceManager().isInSystemHeader(CallF->getLocation()) && in checkPreCall()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DNoUncountedMembersChecker.cpp110 if (BR->getSourceManager().isInSystemHeader(RDLocation)) in shouldSkipDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DSourceCode.cpp65 if (SM.isInSystemHeader(Range.getBegin()) || in validateRange()
66 SM.isInSystemHeader(Range.getEnd())) in validateRange()
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp66 if (SourceMgr.isInSystemHeader(DirLoc.getLoc())) in addCondDirectiveLoc()
H A DPPDirectives.cpp354 if (!SourceMgr.isInSystemHeader(MacroNameLoc) && in CheckMacroName()
900 SourceMgr.isInSystemHeader(Loc)); in getHeaderToIncludeForDiagnostics()
3142 !SourceMgr.isInSystemHeader(DefineTok.getLocation())) && in HandleDefineDirective()
3155 !SourceMgr.isInSystemHeader(DefineTok.getLocation())) { in HandleDefineDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DHeaderIncludeGen.cpp293 return SrcMgr::isSystem(NewFileType) && !SM.isInSystemHeader(PrevLoc); in shouldRecordNewFile()
/freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransformActions.cpp388 if (SM.isInSystemHeader(SM.getExpansionLoc(loc))) in canInsert()
401 if (SM.isInSystemHeader(SM.getExpansionLoc(loc))) in canInsertAfterToken()
H A DTransUnbridgedCasts.cpp109 if (loc.isValid() && Pass.Ctx.getSourceManager().isInSystemHeader(loc)) in VisitCastExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp157 if (Reason == Reserved && S.getSourceManager().isInSystemHeader(Loc)) in DiagReservedModuleName()
269 if (!getSourceManager().isInSystemHeader(Path[0].second) && in ActOnModuleDecl()
H A DSemaAvailability.cpp459 S.getSourceManager().isInSystemHeader( in DoEmitAvailabilityWarning()
547 !S.getSourceManager().isInSystemHeader(InstantiationLoc); in DoEmitAvailabilityWarning()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceLocation.h428 bool isInSystemHeader() const;
H A DSourceManager.h1529 bool isInSystemHeader(SourceLocation Loc) const { in isInSystemHeader() function
1555 return isInSystemHeader(getSpellingLoc(loc)); in isInSystemMacro()
/freebsd-14.2/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp202 return !SM.isInSystemHeader(Loc); in ShouldGenerateLocation()
1210 bool ShouldGenerateLocation = Loc.isValid() && !SM.isInSystemHeader(Loc); in generateUSRForMacro()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h261 bool isInSystemHeader() const { in isInSystemHeader() function
270 return SM.isInSystemHeader(D->getLocation()); in isInSystemHeader()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObjectChecker.cpp245 if (State->getStateManager().getContext().getSourceManager().isInSystemHeader( in addFieldToUninits()
/freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp338 SM.isInSystemHeader(PM.MacroNameToken.getLocation())); in EndOfMainFile()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp535 return Caller->isInSystemHeader(); in isCalledFromSystemHeader()
1375 if (isInSystemHeader() && !isInstanceMessage()) { in argumentsMayEscape()

123