Home
last modified time | relevance | path

Searched refs:IsFromPCH (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DMacroInfo.h308 unsigned IsFromPCH : 1; variable
317 : Loc(Loc), MDKind(K), IsFromPCH(false), IsPublic(true) {} in MacroDirective()
334 bool isFromPCH() const { return IsFromPCH; } in isFromPCH()
336 void setIsFromPCH() { IsFromPCH = true; } in setIsFromPCH()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DMacroInfo.cpp227 if (IsFromPCH) Out << " from_pch"; in dump()