Home
last modified time | relevance | path

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

/external/clang/lib/Lex/
DMacroInfo.cpp78 endInfo = SM.getDecomposedExpansionLoc(macroEnd); in getDefinitionLengthSlow() local
79 assert(startInfo.first == endInfo.first && in getDefinitionLengthSlow()
81 assert(startInfo.second <= endInfo.second); in getDefinitionLengthSlow()
82 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()