Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp379 bool CharDataInvalid = false; in getSpelling() local
381 &CharDataInvalid); in getSpelling()
383 *Invalid = CharDataInvalid; in getSpelling()
384 if (CharDataInvalid) in getSpelling()
430 bool CharDataInvalid = false; in getSpelling() local
431 TokStart = SourceMgr.getCharacterData(Tok.getLocation(), &CharDataInvalid); in getSpelling()
433 *Invalid = CharDataInvalid; in getSpelling()
434 if (CharDataInvalid) { in getSpelling()
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp1101 bool CharDataInvalid = false; in getCharacterData() local
1102 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &CharDataInvalid); in getCharacterData()
1103 if (CharDataInvalid || !Entry.isFile()) { in getCharacterData()