HomeSort by relevance Sort by last modified time
    Searched refs:IsSystem (Results 1 - 25 of 25) sorted by null

  /external/clang/include/clang/Frontend/
FrontendOptions.h 90 bool IsSystem;
94 FrontendInputFile(StringRef File, InputKind Kind, bool IsSystem = false)
95 : File(File.str()), Buffer(nullptr), Kind(Kind), IsSystem(IsSystem) { }
97 bool IsSystem = false)
98 : Buffer(buffer), Kind(Kind), IsSystem(IsSystem) { }
101 bool isSystem() const { return IsSystem; }
FrontendActions.h 98 bool IsSystem;
112 bool IsSystem = false)
113 : ASTFrontendAction(), ModuleMapForUniquing(ModuleMap), IsSystem(IsSystem)
Utils.h 88 bool IsSystem, bool IsModuleFile, bool IsMissing);
98 void maybeAddDependency(StringRef Filename, bool FromModule, bool IsSystem,
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_library_view.h 34 bool IsSystem() const { return type_ == TYPE_SYSTEM; }
54 void* GetSystem() { return IsSystem() ? system_ : NULL; }
crazy_linker_wrappers.cpp 132 if (wrap_lib->IsSystem()) {
200 if (wrap_lib->IsSystem() || wrap_lib->IsCrazy()) {
crazy_linker_library_list.cpp 100 } else if (lib->IsSystem()) {
184 if (!wrap->IsSystem() && !wrap->IsCrazy())
crazy_linker_shared_library.cpp 124 if (wrap->IsSystem()) {
  /ndk/sources/android/crazy_linker/src/
crazy_linker_library_view.h 34 bool IsSystem() const { return type_ == TYPE_SYSTEM; }
54 void* GetSystem() { return IsSystem() ? system_ : NULL; }
crazy_linker_wrappers.cpp 132 if (wrap_lib->IsSystem()) {
200 if (wrap_lib->IsSystem() || wrap_lib->IsCrazy()) {
crazy_linker_library_list.cpp 98 } else if (lib->IsSystem()) {
182 if (!wrap->IsSystem() && !wrap->IsCrazy())
crazy_linker_shared_library.cpp 112 if (wrap->IsSystem()) {
  /external/clang/lib/Frontend/
DependencyFile.cpp 74 /*IsSystem*/false, /*IsModuleFile*/false,
93 /*IsSystem*/false, /*IsModuleFile*/true,
96 bool visitInputFile(StringRef Filename, bool IsSystem,
101 DepCollector.maybeAddDependency(Filename, /*FromModule*/true, IsSystem,
109 bool IsSystem, bool IsModuleFile,
112 sawDependency(Filename, FromModule, IsSystem, IsModuleFile, IsMissing))
117 bool IsSystem, bool IsModuleFile,
119 return Filename != "<built-in>" && (needSystemDependencies() || !IsSystem);
185 bool visitInputFile(StringRef Filename, bool isSystem,
365 bool IsSystem, bool IsOverridden)
    [all...]
ModuleDependencyCollector.cpp 35 bool visitInputFile(StringRef Filename, bool IsSystem,
110 bool ModuleDependencyListener::visitInputFile(StringRef Filename, bool IsSystem,
FrontendActions.cpp 255 if (HS.loadModuleMapFile(ModuleMap, IsSystem))
334 Module->IsSystem));
CompilerInstance.cpp 705 Kind = Input.isSystem() ? SrcMgr::C_System : SrcMgr::C_User;
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 163 bool IsSystem
165 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
177 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory();
179 if (loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem,
193 if (loadModuleMapFile(NestedModuleMapDirName, IsSystem,
518 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User;
519 if (HS.loadFrameworkModule(ModuleName, TopFrameworkDir, IsSystem)) {
583 loadModuleMapFile(File, /*IsSystem=*/false);
    [all...]
ModuleMap.cpp 563 StringRef Name, bool &IsSystem) const {
581 IsSystem = true;
606 bool IsSystem,
642 parseModuleMapFile(ModMapFile, IsSystem);
660 IsSystem = true;
690 if (IsSystem)
691 Result->IsSystem = IsSystem;
748 SubframeworkDir, IsSystem, Result);
    [all...]
  /external/clang/include/clang/Lex/
ModuleMap.h 331 /// \param IsSystem Will be set to 'true' if the inferred module must be a
337 StringRef Name, bool &IsSystem) const;
343 bool IsSystem, Module *Parent);
412 /// \param IsSystem Whether this module map file is in a system header
416 bool parseModuleMapFile(const FileEntry *File, bool IsSystem);
HeaderSearch.h 530 /// \param IsSystem Whether the directories we're looking at are system
533 bool IsSystem);
543 /// \param IsSystem Whether this file is in a system header directory.
546 bool loadModuleMapFile(const FileEntry *File, bool IsSystem);
564 /// \param IsSystem Whether the framework directory is part of the system
570 bool IsSystem);
641 bool IsSystem);
647 /// \param IsSystem Whether this is a system header directory.
652 LoadModuleMapResult loadModuleMapFile(StringRef DirName, bool IsSystem,
658 /// \param IsSystem Whether this is a system header directory
    [all...]
  /external/lzma/CPP/Windows/
FileFind.h 19 inline bool IsSystem(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_SYSTEM) != 0; }
57 bool IsSystem() const { return MatchesMask(FILE_ATTRIBUTE_SYSTEM); }
  /external/clang/lib/Basic/
Module.cpp 32 IsExplicit(IsExplicit), IsSystem(false), IsExternC(false),
39 if (Parent->IsSystem)
40 IsSystem = true;
296 if (IsSystem) {
  /external/clang/include/clang/Basic/
Module.h 146 unsigned IsSystem : 1;
  /external/clang/lib/Serialization/
ASTReader.cpp 136 bool isSystem,
140 (!isSystem || First->needsSystemInputFileVisitation()))
141 Continue |= First->visitInputFile(Filename, isSystem, isOverridden);
143 (!isSystem || Second->needsSystemInputFileVisitation()))
144 Continue |= Second->visitInputFile(Filename, isSystem, isOverridden);
340 bool IsSystem, bool Complain) {
342 if (IsSystem) {
410 return checkDiagnosticMappings(*Diags, ExistingDiags, M->IsSystem, Complain);
    [all...]
ASTWriter.cpp     [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 1660 milliseconds