Searched refs:lastPos (Results 1 – 3 of 3) sorted by relevance
/openbsd/gnu/llvm/lld/MachO/ |
H A D | ExportTrie.cpp | 178 TrieNode *node, size_t lastPos, size_t pos) { in sortAndBuild() argument 202 if (lastPos != pos && (isTerminal || prefixesDiverge)) { in sortAndBuild() 204 node->edges.emplace_back(pivotSymbol->getName().slice(lastPos, pos), in sortAndBuild() 207 lastPos = pos; in sortAndBuild() 210 sortAndBuild(vec.slice(0, i), node, lastPos, pos); in sortAndBuild() 211 sortAndBuild(vec.slice(j), node, lastPos, pos); in sortAndBuild()
|
H A D | ExportTrie.h | 34 size_t lastPos, size_t pos);
|
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | DeclPrinter.cpp | 1300 std::string::size_type pos, lastPos = 0; in VisitObjCMethodDecl() local 1303 pos = name.find_first_of(':', lastPos); in VisitObjCMethodDecl() 1304 if (lastPos != 0) in VisitObjCMethodDecl() 1306 Out << name.substr(lastPos, pos - lastPos) << ':'; in VisitObjCMethodDecl() 1311 lastPos = pos + 1; in VisitObjCMethodDecl()
|