Home
last modified time | relevance | path

Searched refs:lastPos (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lld/MachO/
H A DExportTrie.cpp222 TrieNode *node, size_t lastPos, size_t pos) { in sortAndBuild() argument
246 if (lastPos != pos && (isTerminal || prefixesDiverge)) { in sortAndBuild()
248 node->edges.emplace_back(pivotSymbol->getName().slice(lastPos, pos), in sortAndBuild()
251 lastPos = pos; in sortAndBuild()
254 sortAndBuild(vec.slice(0, i), node, lastPos, pos); in sortAndBuild()
255 sortAndBuild(vec.slice(j), node, lastPos, pos); in sortAndBuild()
H A DExportTrie.h34 size_t lastPos, size_t pos);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp1396 std::string::size_type pos, lastPos = 0; in VisitObjCMethodDecl() local
1399 pos = name.find_first_of(':', lastPos); in VisitObjCMethodDecl()
1400 if (lastPos != 0) in VisitObjCMethodDecl()
1402 Out << name.substr(lastPos, pos - lastPos) << ':'; in VisitObjCMethodDecl()
1407 lastPos = pos + 1; in VisitObjCMethodDecl()