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

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessorOptions.h48 std::vector<std::string> Includes; member in class:clang::PreprocessorOptions
217 Includes.clear();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendAction.cpp288 operator+=(SmallVectorImpl<char> &Includes, StringRef RHS) { argument
289 Includes.append(RHS.begin(), RHS.end());
290 return Includes;
294 SmallVectorImpl<char> &Includes,
298 Includes += "extern \"C\" {\n";
300 Includes += "#import \"";
302 Includes += "#include \"";
304 Includes += HeaderName;
306 Includes += "\"\n";
308 Includes
293 addHeaderInclude(StringRef HeaderName, SmallVectorImpl<char> &Includes, const LangOptions &LangOpts, bool IsExternC) argument
318 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.cpp1206 for (unsigned i = 0, e = InitOpts.Includes.size(); i != e; ++i) {
1207 const std::string &Path = InitOpts.Includes[i];
H A DCompilerInvocation.cpp2325 PPOpts.Includes.push_back("opencl-c-base.h");
2327 PPOpts.Includes.push_back("opencl-c.h");
3414 Opts.Includes.emplace_back(A->getValue());
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h33 bool Includes(const llvm::APSInt &v) const { function in class:clang::ento::Range
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DARCMT.cpp189 PPOpts.Includes.insert(PPOpts.Includes.begin(), OriginalFile);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp46 if (i->Includes(Lower)) {
47 if (i->Includes(Upper)) {
54 if (i->Includes(Upper)) {
/freebsd-11-stable/contrib/bmake/
H A Dparse.c195 Includes, /* .INCLUDES */ enumerator in enum:__anon104
314 { ".INCLUDES", Includes, 0 },
1630 (specType == Includes) || (specType == Libs) ||
1673 case Includes:
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp1861 FindCursorIndex(const SmallVectorImpl<IncludeDirective> &Includes, argument
1865 for (int i = 0, e = Includes.size(); i != e; ++i) {
1866 unsigned Start = Includes[Indices[i]].Offset;
1867 unsigned End = Start + Includes[Indices[i]].Text.size();
1874 while (--i >= 0 && Includes[CursorIndex].Text == Includes[Indices[i]].Text)
1903 // Sorts and deduplicate a block of includes given by 'Includes' alphabetically
1904 // adding the necessary replacement to 'Replaces'. 'Includes' must be in strict
1911 const SmallVectorImpl<IncludeDirective> &Includes,
1916 unsigned IncludesBeginOffset = Includes
1910 sortCppIncludes(const FormatStyle &Style, const SmallVectorImpl<IncludeDirective> &Includes, ArrayRef<tooling::Range> Ranges, StringRef FileName, StringRef Code, tooling::Replacements &Replaces, unsigned *Cursor) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVC.cpp667 std::vector<std::string> Includes = local
669 for (const auto &Include : Includes)
/freebsd-11-stable/contrib/bmake/mk/
H A Dlib.mk45 # if not already set. Includes -DPIC, if required.
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdbarch.sh1511 obstack_free (obstack, 0); /* Includes the ARCH. */
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1300 // Includes
1301 Record.push_back(PPOpts.Includes.size());
1302 for (unsigned I = 0, N = PPOpts.Includes.size(); I != N; ++I)
1303 AddString(PPOpts.Includes[I], Record);
H A DASTReader.cpp708 for (unsigned I = 0, N = ExistingPPOpts.Includes.size(); I != N; ++I) {
709 StringRef File = ExistingPPOpts.Includes[I];
724 if (std::find(PPOpts.Includes.begin(), PPOpts.Includes.end(), File)
725 != PPOpts.Includes.end())
5829 // Includes
5831 PPOpts.Includes.push_back(ReadString(Record, Idx));
5834 // Macro Includes

Completed in 216 milliseconds