Lines Matching refs:HeaderPath
884 void handleHeaderEntry(clang::Preprocessor &PP, llvm::StringRef HeaderPath) { in handleHeaderEntry() argument
886 if (HeaderPath.startswith("<")) in handleHeaderEntry()
888 HeaderHandle H = addHeader(HeaderPath); in handleHeaderEntry()
897 void handleHeaderExit(llvm::StringRef HeaderPath) { in handleHeaderExit() argument
899 if (HeaderPath.startswith("<")) in handleHeaderExit()
901 HeaderHandle H = findHeaderHandle(HeaderPath); in handleHeaderExit()
925 bool isHeaderListHeader(llvm::StringRef HeaderPath) const { in isHeaderListHeader()
926 std::string CanonicalPath = getCanonicalPath(HeaderPath); in isHeaderListHeader()
938 HeaderHandle findHeaderHandle(llvm::StringRef HeaderPath) const { in findHeaderHandle()
939 std::string CanonicalPath = getCanonicalPath(HeaderPath); in findHeaderHandle()
951 HeaderHandle addHeader(llvm::StringRef HeaderPath) { in addHeader() argument
952 std::string CanonicalPath = getCanonicalPath(HeaderPath); in addHeader()
1285 std::string HeaderPath = getSourceLocationFile(PP, HashLoc); in InclusionDirective() local
1287 PPTracker.handleIncludeDirective(HeaderPath, DirectiveLine, DirectiveColumn, in InclusionDirective()