Searched refs:find_last_of (Results 1 - 15 of 15) sorted by relevance

/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DSmallString.h208 size_t find_last_of(char C, size_t From = StringRef::npos) const { function in class:llvm::SmallString
209 return str().find_last_of(C, From);
216 size_t find_last_of( function in class:llvm::SmallString
218 return str().find_last_of(Chars, From);
H A DStringRef.h291 size_t find_last_of(char C, size_t From = npos) const {
299 size_t find_last_of(StringRef Chars, size_t From = npos) const;
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DPath.cpp93 size_t pos = str.find_last_of(separators, str.size() - 1);
97 pos = str.find_last_of(':', str.size() - 2);
439 size_t pos = p.find_last_of('.');
473 size_t pos = fname.find_last_of('.');
486 size_t pos = fname.find_last_of('.');
H A DSourceMgr.cpp127 size_t NewlineOffs = StringRef(BufStart, Ptr-BufStart).find_last_of("\n\r");
H A DStringRef.cpp236 /// find_last_of - Find the last character in the string that is in \arg C,
240 StringRef::size_type StringRef::find_last_of(StringRef Chars,
H A DYAMLParser.cpp1617 if (Raw.find_last_of('!') == 0) {
1626 StringRef TagHandle = Raw.substr(0, Raw.find_last_of('!') + 1);
1637 Ret += Raw.substr(Raw.find_last_of('!') + 1);
/freebsd-9.3-release/contrib/libstdc++/include/bits/
H A Dbasic_string.h1740 find_last_of(const basic_string& __str, size_type __pos = npos) const function in class:basic_string
1741 { return this->find_last_of(__str.data(), __pos, __str.size()); }
1755 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const;
1768 find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
1771 return this->find_last_of(__s, __pos, traits_type::length(__s));
1787 find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
/freebsd-9.3-release/contrib/libstdc++/include/ext/
H A Dvstring.h1465 find_last_of(const __versa_string& __str, size_type __pos = npos) const function in class:__versa_string
1466 { return this->find_last_of(__str.data(), __pos, __str.size()); }
1480 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const;
1493 find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
1496 return this->find_last_of(__s, __pos, traits_type::length(__s));
1512 find_last_of(_CharT __c, size_type __pos = npos) const function in class:__versa_string
/freebsd-9.3-release/contrib/llvm/lib/MC/
H A DMCObjectDisassembler.cpp241 BBName = BBName.substr(0, BBName.find_last_of(':'));
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DDebugIR.cpp498 size_t dot = Filename.find_last_of(".");
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Format/
H A DBreakableToken.cpp63 StringRef::size_type SpaceOffset = Text.find_last_of(Blanks, MaxSplitBytes);
H A DFormat.cpp1172 Text.substr(Text.find_last_of('\n') + 1), 0, Style.TabWidth,
/freebsd-9.3-release/contrib/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.cpp373 size_t ColonPos = ModuleName.find_last_of(':');
/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp710 size_t end = Ops.first.find_last_of(" \t");
717 end = Ops.second.find_last_of(" \t");
/freebsd-9.3-release/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp1410 const std::string inTypeCode = NameRef.substr(NameRef.find_last_of("_")+1);

Completed in 223 milliseconds