Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DMarkup.cpp117 size_t BeginPos = Line.find("{{{"); in parseElement() local
118 if (BeginPos == StringRef::npos) in parseElement()
120 size_t EndPos = Line.find("}}}", BeginPos + 3); in parseElement()
125 Element.Text = Line.slice(BeginPos, EndPos); in parseElement()
174 size_t BeginPos = Line.rfind("{{{"); in parseMultiLineBegin() local
175 if (BeginPos == StringRef::npos) in parseMultiLineBegin()
177 size_t BeginTagPos = BeginPos + 3; in parseMultiLineBegin()
192 return Line.substr(BeginPos); in parseMultiLineBegin()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp836 auto BeginPos = IndexCursor.GetCurrentBitNo(); in lazyLoadModuleMetadataBlock() local
837 if (Error Err = IndexCursor.JumpToBit(BeginPos + Offset)) in lazyLoadModuleMetadataBlock()
857 auto CurrentValue = BeginPos; in lazyLoadModuleMetadataBlock()