OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsSystem
(Results
1 - 7
of
7
) sorted by null
/external/clang/include/clang/Frontend/
FrontendActions.h
96
bool
IsSystem
;
110
bool
IsSystem
= false)
111
: ASTFrontendAction(), ModuleMapForUniquing(ModuleMap),
IsSystem
(
IsSystem
)
FrontendOptions.h
92
bool
IsSystem
;
95
FrontendInputFile() : Buffer(nullptr), Kind(IK_None),
IsSystem
(false) { }
96
FrontendInputFile(StringRef File, InputKind Kind, bool
IsSystem
= false)
97
: File(File.str()), Buffer(nullptr), Kind(Kind),
IsSystem
(
IsSystem
) { }
99
bool
IsSystem
= false)
100
: Buffer(buffer), Kind(Kind),
IsSystem
(
IsSystem
) { }
103
bool
isSystem
() const { return
IsSystem
; }
[
all
...]
/external/clang/include/clang/Lex/
ModuleMap.h
50
/// \param
IsSystem
Whether this is a module map from a system include path.
52
const FileEntry &File, bool
IsSystem
) {}
160
Attributes() :
IsSystem
(), IsExternC(), IsExhaustive() {}
163
unsigned
IsSystem
: 1;
389
bool
IsSystem
, Module *Parent);
491
/// \param
IsSystem
Whether this module map file is in a system header
501
bool parseModuleMapFile(const FileEntry *File, bool
IsSystem
,
/external/lzma/CPP/Windows/
FileFind.h
17
inline bool
IsSystem
(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_SYSTEM) != 0; }
59
bool
IsSystem
() const { return MatchesMask(FILE_ATTRIBUTE_SYSTEM); }
/external/clang/lib/Lex/
HeaderSearch.cpp
182
bool
IsSystem
184
Module = loadFrameworkModule(ModuleName, FrameworkDir,
IsSystem
);
196
bool
IsSystem
= SearchDirs[Idx].isSystemHeaderDirectory();
198
if (loadModuleMapFile(SearchDirs[Idx].getDir(),
IsSystem
,
212
if (loadModuleMapFile(NestedModuleMapDirName,
IsSystem
,
516
bool
IsSystem
= getDirCharacteristic() != SrcMgr::C_User;
519
FE, FrameworkPath, RequestingModule, SuggestedModule,
IsSystem
))
523
SuggestedModule,
IsSystem
))
[
all
...]
ModuleMap.cpp
600
bool
IsSystem
, Module *Parent) {
602
Attrs.
IsSystem
=
IsSystem
;
648
parseModuleMapFile(ModMapFile, Attrs.
IsSystem
, ParentDir);
665
Attrs.
IsSystem
|= inferred->second.Attrs.
IsSystem
;
701
Result->
IsSystem
|= Attrs.
IsSystem
;
[
all
...]
/external/clang/lib/Serialization/
ASTReader.cpp
148
bool
isSystem
,
153
(!
isSystem
|| First->needsSystemInputFileVisitation()))
154
Continue |= First->visitInputFile(Filename,
isSystem
, isOverridden,
157
(!
isSystem
|| Second->needsSystemInputFileVisitation()))
158
Continue |= Second->visitInputFile(Filename,
isSystem
, isOverridden,
378
bool
IsSystem
, bool Complain) {
380
if (
IsSystem
) {
448
return checkDiagnosticMappings(*Diags, ExistingDiags, M->
IsSystem
, Complain);
[
all
...]
Completed in 1037 milliseconds