Searched refs:LTok (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/misc/ |
D | RedundantExpressionCheck.cpp | 806 Token LTok, RTok; in areExprsFromDifferentMacros() local 808 LRawLex.LexFromRawLexer(LTok); in areExprsFromDifferentMacros() 810 } while (!LTok.is(tok::eof) && !RTok.is(tok::eof) && in areExprsFromDifferentMacros() 811 isSameRawIdentifierToken(LTok, RTok, SM) && in areExprsFromDifferentMacros() 812 !isTokAtEndOfExpr(Lsr, LTok, SM) && in areExprsFromDifferentMacros() 814 return (!isTokAtEndOfExpr(Lsr, LTok, SM) || in areExprsFromDifferentMacros() 816 !isSameRawIdentifierToken(LTok, RTok, SM); in areExprsFromDifferentMacros()
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | XRefs.cpp | 776 auto LTok = L.SpelledTok.location(); in take() local 778 return std::tie(LTok, L.Role) < std::tie(RTok, R.Role); in take() 783 auto LTok = L.SpelledTok.location(); in take() local 785 return std::tie(LTok, L.Role) == in take()
|