HomeSort by relevance Sort by last modified time
    Searched refs:find_first_of (Results 1 - 25 of 211) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.first.of/
find_first_of.pass.cpp 15 // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2);
28 assert(std::find_first_of(input_iterator<const int*>(ia),
34 assert(std::find_first_of(input_iterator<const int*>(ia),
39 assert(std::find_first_of(input_iterator<const int*>(ia),
44 assert(std::find_first_of(input_iterator<const int*>(ia),
find_first_of_pred.pass.cpp 16 // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2, Pred pred);
30 assert(std::find_first_of(input_iterator<const int*>(ia),
37 assert(std::find_first_of(input_iterator<const int*>(ia),
43 assert(std::find_first_of(input_iterator<const int*>(ia),
49 assert(std::find_first_of(input_iterator<const int*>(ia),
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.find.first.of/
find_first_of.pass.cpp 15 // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2);
28 assert(std::find_first_of(input_iterator<const int*>(ia),
34 assert(std::find_first_of(input_iterator<const int*>(ia),
39 assert(std::find_first_of(input_iterator<const int*>(ia),
44 assert(std::find_first_of(input_iterator<const int*>(ia),
find_first_of_pred.pass.cpp 16 // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2, Pred pred);
30 assert(std::find_first_of(input_iterator<const int*>(ia),
37 assert(std::find_first_of(input_iterator<const int*>(ia),
43 assert(std::find_first_of(input_iterator<const int*>(ia),
49 assert(std::find_first_of(input_iterator<const int*>(ia),
  /external/libcxx/test/std/experimental/string.view/string.view.find/
find_first_of_char_size.pass.cpp 12 // constexpr size_type find_first_of(charT c, size_type pos = 0) const;
24 assert(s.find_first_of(c, pos) == x);
33 assert(s.find_first_of(c) == x);
75 static_assert (sv1.find_first_of( 'e', 0 ) == SV::npos, "" );
76 static_assert (sv1.find_first_of( 'e', 1 ) == SV::npos, "" );
77 static_assert (sv2.find_first_of( 'q', 0 ) == SV::npos, "" );
78 static_assert (sv2.find_first_of( 'e', 1 ) == 4, "" );
79 static_assert (sv2.find_first_of( 'e', 5 ) == SV::npos, "" );
find_first_of_pointer_size.pass.cpp 12 // constexpr size_type find_first_of(const charT* s, size_type pos = 0) const;
24 assert(s.find_first_of(str, pos) == x);
33 assert(s.find_first_of(str) == x);
158 static_assert (sv1.find_first_of( "", 0) == SV::npos, "" );
159 static_assert (sv1.find_first_of( "irkhs", 0) == SV::npos, "" );
160 static_assert (sv2.find_first_of( "", 0) == SV::npos, "" );
161 static_assert (sv2.find_first_of( "gfsrt", 0) == SV::npos, "" );
162 static_assert (sv2.find_first_of( "lecar", 0) == 0, "" );
  /ndk/tests/device/test-gnustl-full/unit/
alg_test.cpp 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end());
272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end());
286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
  /ndk/tests/device/test-stlport/unit/
alg_test.cpp 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end());
272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end());
286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
  /external/llvm/include/llvm/ADT/
SmallString.h 177 size_t find_first_of(char C, size_t From = 0) const { function in class:llvm::SmallString
178 return str().find_first_of(C, From);
185 size_t find_first_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
186 return str().find_first_of(Chars, From);
  /external/parameter-framework/utility/
Tokenizer.cpp 56 string::size_type tokenEnd = _input.find_first_of(_delimiters, tokenStart);
convert.hpp 67 if (str.find_first_of(std::string("\r\n\t\v ")) != std::string::npos) {
  /external/parameter-framework/parameter/
RuleParser.cpp 163 if ((_uiCurrentPos != _strApplicationRule.length()) && ((delimiter = _strApplicationRule.find_first_of(_acDelimiters[_eStatus], _uiCurrentPos)) != string::npos)) {
252 if ((delimiter = _strApplicationRule.find_first_of("{} ,", _uiCurrentPos)) == string::npos) {
MappingData.cpp 51 std::string::size_type iFistDelimiterOccurrence = strMappingElement.find_first_of(':');
  /external/sfntly/cpp/src/sample/chromium/
chrome_subsetter.cc 86 size_t end = hex_csv.find_first_of(",");
91 end = hex_csv.find_first_of(",", start);
  /external/ceres-solver/internal/ceres/
split.cc 99 end_index = full.find_first_of(delim, begin_index);
  /external/google-breakpad/src/common/mac/
string_utilities.cc 75 start = str.find_first_of(digits, end + 1);
  /external/llvm/lib/Support/
StringExtras.cpp 43 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
  /external/protobuf/src/google/protobuf/compiler/
code_generator.cc 69 string::size_type equals_pos = parts[i].find_first_of('=');
  /frameworks/compile/mclinker/lib/Script/
WildcardPattern.cpp 32 if (pPattern.find_first_of('*') == (pPattern.size() - 1))
  /external/libcxx/test/std/strings/basic.string/string.ops/string_find.first.of/
char_size.pass.cpp 12 // size_type find_first_of(charT c, size_type pos = 0) const;
24 assert(s.find_first_of(c, pos) == x);
33 assert(s.find_first_of(c) == x);
  /external/lldb/source/Core/
InputReader.cpp 83 size_t pos = m_end_token.find_first_of (white_space);
93 size_t pos = m_end_token.find_first_of ('\n');
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 93 Str = Str.substr(Str.find_first_of('\n'));
110 size_t Next = Str.find_first_of(" \t\n\r,#[]");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.of/
char_size.pass.cpp 12 // size_type find_first_of(charT c, size_type pos = 0) const;
24 assert(s.find_first_of(c, pos) == x);
33 assert(s.find_first_of(c) == x);
  /external/llvm/lib/Passes/
PassBuilder.cpp 231 size_t End = PipelineText.find_first_of(",)");
284 size_t End = PipelineText.find_first_of(",)");
351 size_t End = PipelineText.find_first_of(",)");
383 PipelineText.substr(0, PipelineText.find_first_of(",)"));
  /external/llvm/unittests/ADT/
SmallStringTest.cpp 136 EXPECT_EQ(2U, theString.find_first_of('l'));
137 EXPECT_EQ(1U, theString.find_first_of("el"));
138 EXPECT_EQ(StringRef::npos, theString.find_first_of("xyz"));

Completed in 736 milliseconds

1 2 3 4 5 6 7 8 9