Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp423 bool CharDataInvalid = false; in getSpelling() local
425 &CharDataInvalid); in getSpelling()
427 *Invalid = CharDataInvalid; in getSpelling()
428 if (CharDataInvalid) in getSpelling()
474 bool CharDataInvalid = false; in getSpelling() local
475 TokStart = SourceMgr.getCharacterData(Tok.getLocation(), &CharDataInvalid); in getSpelling()
477 *Invalid = CharDataInvalid; in getSpelling()
478 if (CharDataInvalid) { in getSpelling()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp1121 bool CharDataInvalid = false; in getCharacterData() local
1122 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &CharDataInvalid); in getCharacterData()
1123 if (CharDataInvalid || !Entry.isFile()) { in getCharacterData()