Searched refs:Includes (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessorOptions.h48 std::vector<std::string> Includes; member in class:clang::PreprocessorOptions
221 Includes.clear();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendAction.cpp286 operator+=(SmallVectorImpl<char> &Includes, StringRef RHS) { argument
287 Includes.append(RHS.begin(), RHS.end());
288 return Includes;
292 SmallVectorImpl<char> &Includes,
296 Includes += "extern \"C\" {\n";
298 Includes += "#import \"";
300 Includes += "#include \"";
302 Includes += HeaderName;
304 Includes += "\"\n";
306 Includes
291 addHeaderInclude(StringRef HeaderName, SmallVectorImpl<char> &Includes, const LangOptions &LangOpts, bool IsExternC) argument
316 collectModuleHeaderIncludes( const LangOptions &LangOpts, FileManager &FileMgr, DiagnosticsEngine &Diag, ModuleMap &ModMap, clang::Module *Module, SmallVectorImpl<char> &Includes) argument
[all...]
H A DChainedIncludesSource.cpp133 CInvok->getPreprocessorOpts().Includes.clear();
H A DInitPreprocessor.cpp1213 for (unsigned i = 0, e = InitOpts.Includes.size(); i != e; ++i) {
1214 const std::string &Path = InitOpts.Includes[i];
H A DCompilerInvocation.cpp2364 PPOpts.Includes.push_back("opencl-c-base.h");
2366 PPOpts.Includes.push_back("opencl-c.h");
3574 Opts.Includes.emplace_back(A->getValue());
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h37 bool Includes(const llvm::APSInt &v) const { function in class:clang::ento::Range
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp126 if (i->Includes(Lower)) {
127 if (i->Includes(Upper)) {
134 if (i->Includes(Upper)) {
796 if (!LHS.Includes(Zero) || !RHS.Includes(Zero)) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DARCMT.cpp190 PPOpts.Includes.insert(PPOpts.Includes.begin(), OriginalFile);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp2054 FindCursorIndex(const SmallVectorImpl<IncludeDirective> &Includes, argument
2058 for (int i = 0, e = Includes.size(); i != e; ++i) {
2059 unsigned Start = Includes[Indices[i]].Offset;
2060 unsigned End = Start + Includes[Indices[i]].Text.size();
2067 while (--i >= 0 && Includes[CursorIndex].Text == Includes[Indices[i]].Text)
2096 // Sorts and deduplicate a block of includes given by 'Includes' alphabetically
2097 // adding the necessary replacement to 'Replaces'. 'Includes' must be in strict
2104 const SmallVectorImpl<IncludeDirective> &Includes,
2109 unsigned IncludesBeginOffset = Includes
2103 sortCppIncludes(const FormatStyle &Style, const SmallVectorImpl<IncludeDirective> &Includes, ArrayRef<tooling::Range> Ranges, StringRef FileName, StringRef Code, tooling::Replacements &Replaces, unsigned *Cursor) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVC.cpp679 std::vector<std::string> Includes = local
681 for (const auto &Include : Includes)
/freebsd-13-stable/contrib/bmake/mk/
H A Dlib.mk45 # if not already set. Includes -DPIC, if required.
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1343 // Includes
1344 Record.push_back(PPOpts.Includes.size());
1345 for (unsigned I = 0, N = PPOpts.Includes.size(); I != N; ++I)
1346 AddString(PPOpts.Includes[I], Record);
H A DASTReader.cpp710 for (unsigned I = 0, N = ExistingPPOpts.Includes.size(); I != N; ++I) {
711 StringRef File = ExistingPPOpts.Includes[I];
726 if (std::find(PPOpts.Includes.begin(), PPOpts.Includes.end(), File)
727 != PPOpts.Includes.end())
5868 // Includes
5870 PPOpts.Includes.push_back(ReadString(Record, Idx));
5873 // Macro Includes

Completed in 245 milliseconds