Searched defs:ColonPos (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Format/
H A DContinuationIndenter.h150 NoLineBreak(NoLineBreak), LastOperatorWrapped(true), ColonPos(0),
203 unsigned ColonPos; member in struct:clang::format::ParenState
279 if (ColonPos != Other.ColonPos)
280 return ColonPos < Other.ColonPos;
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.cpp373 size_t ColonPos = ModuleName.find_last_of(':'); local
375 if (ColonPos != std::string::npos) {
376 std::string ArchStr = ModuleName.substr(ColonPos + 1);
378 BinaryName = ModuleName.substr(0, ColonPos);

Completed in 89 milliseconds