Searched refs:find_first_of (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-10.1-release/contrib/llvm/include/llvm/ADT/
H A DSmallString.h180 size_t find_first_of(char C, size_t From = 0) const { function in class:llvm::SmallString
181 return str().find_first_of(C, From);
188 size_t find_first_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
189 return str().find_first_of(Chars, From);
H A DStringRef.h269 size_t find_first_of(char C, size_t From = 0) const {
277 size_t find_first_of(StringRef Chars, size_t From = 0) const;
/freebsd-10.1-release/contrib/llvm/lib/Support/
H A DStringExtras.cpp44 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
H A DRegex.cpp176 return Str.find_first_of("()^$|*+?.[]\\{}") == StringRef::npos;
H A DPath.cpp65 size_t end = path.find_first_of(separators, 2);
80 size_t end = path.find_first_of(separators);
127 return str.find_first_of(separators, 2);
235 size_t end_pos = Path.find_first_of(separators, Position);
661 assert(P.find_first_of(separators) == StringRef::npos &&
H A DYAMLParser.cpp866 || StringRef(Current, 1).find_first_of("#;/?:@&=+$,_.!~*'()[]")
1314 && (StringRef(Current, 1).find_first_of(",:?[]{}")
1549 || FirstChar.find_first_of("-?:,[]{}#&*!|>'\"%@`") != StringRef::npos)
1689 StringRef::size_type i = UnquotedValue.find_first_of("\\\r\n");
1723 for (; i != StringRef::npos; i = UnquotedValue.find_first_of("\\\r\n")) {
2222 T = T.substr(T.find_first_of(" \t")).ltrim(" \t");
2223 std::size_t HandleEnd = T.find_first_of(" \t");
H A DSourceMgr.cpp269 if (I->getText().find_first_of("\n\r\t") != StringRef::npos)
H A DStringRef.cpp195 /// find_first_of - Find the first character in the string that is in \arg
199 StringRef::size_type StringRef::find_first_of(StringRef Chars,
/freebsd-10.1-release/contrib/llvm/tools/llvm-mc/
H A DDisassembler.cpp112 Str = Str.substr(Str.find_first_of('\n'));
133 size_t Next = Str.find_first_of(" \t\n\r,#[]");
/freebsd-10.1-release/contrib/libstdc++/include/backward/
H A Dalgo.h118 using std::find_first_of;
/freebsd-10.1-release/contrib/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp162 std::string::size_type DotIdx = OpName.find_first_of(".");
200 std::string::size_type wpos = CStr.find_first_of(" \t");
220 std::string::size_type pos = CStr.find_first_of('=');
226 wpos = Name.find_first_of(" \t");
261 eidx = CStr.find_first_of(delims, bidx);
H A DAsmWriterInst.cpp68 AsmString.find_first_of("$\\", LastEmitted);
H A DAsmMatcherEmitter.cpp706 size_t start = Ops.first.find_first_of('$');
713 start = Ops.second.find_first_of('$');
/freebsd-10.1-release/contrib/libstdc++/include/bits/
H A Dbasic_string.h1679 find_first_of(const basic_string& __str, size_type __pos = 0) const function in class:basic_string
1680 { return this->find_first_of(__str.data(), __pos, __str.size()); }
1694 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const;
1707 find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:basic_string
1710 return this->find_first_of(__s, __pos, traits_type::length(__s));
1726 find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string
/freebsd-10.1-release/contrib/libstdc++/include/ext/
H A Dvstring.h1404 find_first_of(const __versa_string& __str, size_type __pos = 0) const function in class:__versa_string
1405 { return this->find_first_of(__str.data(), __pos, __str.size()); }
1419 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const;
1432 find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__versa_string
1435 return this->find_first_of(__s, __pos, traits_type::length(__s));
1451 find_first_of(_CharT __c, size_type __pos = 0) const function in class:__versa_string
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DStackFrame.cpp619 size_t separator_idx = var_path.find_first_of(".-[=+~|&^%#@!/?,<>{}");
699 separator_idx = var_path.find_first_of(".-[");
971 separator_idx = var_path.find_first_of(".-[");
1072 separator_idx = var_path.find_first_of(".-[");
/freebsd-10.1-release/contrib/llvm/lib/MC/
H A DMCObjectSymbolizer.cpp121 << Contents.substr(0, Contents.find_first_of(0));
/freebsd-10.1-release/contrib/llvm/tools/bugpoint/
H A DToolRunner.cpp415 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
426 pos = CommandLine.find_first_of(delimiters, lastPos);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Format/
H A DBreakableToken.cpp73 SpaceOffset = Text.find_first_of(
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Frontend/
H A DInitPreprocessor.cpp48 StringRef::size_type End = MacroBody.find_first_of("\n\r");
H A DTextDiagnostic.cpp1015 StringRef(I->CodeToInsert).find_first_of("\n\r") == StringRef::npos) {
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DArgs.cpp1005 size_t pos = safe_arg.find_first_of(" '\"", prev_pos);
/freebsd-10.1-release/contrib/llvm/lib/IR/
H A DAsmWriter.cpp1294 size_t NewLine = Asm.find_first_of('\n', CurPos);
1304 NewLine = Asm.find_first_of('\n', CurPos);
/freebsd-10.1-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp797 size_t I = S1.find_first_of(S2);
879 size_t Pos = S1.find_first_of(S2);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclPrinter.cpp929 pos = name.find_first_of(':', lastPos);

Completed in 369 milliseconds

12