Home
last modified time | relevance | path

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

/external/clang/lib/Lex/
DMacroInfo.cpp55 endInfo = SM.getDecomposedExpansionLoc(macroEnd); in getDefinitionLengthSlow() local
56 assert(startInfo.first == endInfo.first && in getDefinitionLengthSlow()
58 assert(startInfo.second <= endInfo.second); in getDefinitionLengthSlow()
59 DefinitionLength = endInfo.second - startInfo.second; in getDefinitionLengthSlow()
/external/clang/lib/Edit/
DCommit.cpp312 std::pair<FileID, unsigned> endInfo = SM.getDecomposedLoc(range.getEnd()); in canRemoveRange() local
313 if (beginInfo.first != endInfo.first || in canRemoveRange()
314 beginInfo.second > endInfo.second) in canRemoveRange()
318 Len = endInfo.second - beginInfo.second; in canRemoveRange()