HomeSort by relevance Sort by last modified time
    Searched full:find_first_not_of (Results 151 - 175 of 337) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
StringRef.h 409 size_t find_first_not_of(char C, size_t From = 0) const;
416 size_t find_first_not_of(StringRef Chars, size_t From = 0) const;
809 return drop_front(std::min(Length, find_first_not_of(Char)));
816 return drop_front(std::min(Length, find_first_not_of(Chars)));
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
StringRef.h 409 size_t find_first_not_of(char C, size_t From = 0) const;
416 size_t find_first_not_of(StringRef Chars, size_t From = 0) const;
809 return drop_front(std::min(Length, find_first_not_of(Char)));
816 return drop_front(std::min(Length, find_first_not_of(Chars)));
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
StringRef.h 409 size_t find_first_not_of(char C, size_t From = 0) const;
416 size_t find_first_not_of(StringRef Chars, size_t From = 0) const;
809 return drop_front(std::min(Length, find_first_not_of(Char)));
816 return drop_front(std::min(Length, find_first_not_of(Chars)));
  /external/llvm/unittests/ADT/
StringRefTest.cpp 372 EXPECT_EQ(1U, Str.find_first_not_of('h'));
373 EXPECT_EQ(4U, Str.find_first_not_of("hel"));
374 EXPECT_EQ(StringRef::npos, Str.find_first_not_of("hello"));
  /external/llvm/include/llvm/Support/
YAMLTraits.h 362 S.drop_front().find_first_not_of(OctalChars) == StringRef::npos)
366 S.drop_front(2).find_first_not_of(OctalChars) == StringRef::npos)
371 S.drop_front(2).find_first_not_of(HexChars) == StringRef::npos)
375 if (S.find_first_not_of(DecChars) == StringRef::npos)
422 if (S.find_first_not_of(ScalarSafeChars) != StringRef::npos)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
YAMLTraits.h 414 S.drop_front().find_first_not_of(OctalChars) == StringRef::npos)
418 S.drop_front(2).find_first_not_of(OctalChars) == StringRef::npos)
423 S.drop_front(2).find_first_not_of(HexChars) == StringRef::npos)
427 if (S.find_first_not_of(DecChars) == StringRef::npos)
474 if (S.find_first_not_of(ScalarSafeChars) != StringRef::npos)
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 208 size_t FirstNonSymbol = Expr.find_first_not_of("0123456789"
454 FirstNonDigit = Expr.find_first_not_of("0123456789abcdefABCDEF", 2);
458 FirstNonDigit = Expr.find_first_not_of("0123456789");
    [all...]
  /build/kati/
eval.cc 173 if (expr.find_first_not_of(" \t;") == string::npos) {
  /external/libmojo/mojo/public/cpp/bindings/tests/
validation_test_input_parser.cc 200 input_cursor_ = input_.find_first_not_of(kWhitespaceChars, input_cursor_);
  /external/llvm/lib/Support/
LockFileManager.cpp 56 PIDStr = PIDStr.substr(PIDStr.find_first_not_of(" "));
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
Disassembler.cpp 100 if (size_t Pos = Str.find_first_not_of(" \t\r")) {
  /external/webrtc/talk/media/devices/
linuxdevicemanager.cc 172 std::string::size_type first = s.find_first_not_of(drop);
  /external/libcxx/test/std/strings/basic.string/string.ops/string_find.first.not.of/
pointer_size_size.pass.cpp 12 // size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
24 assert(s.find_first_not_of(str, pos, n) == x);
  /external/llvm/lib/ProfileData/
SampleProfReader.cpp 120 n3 += Rest.substr(n3).find_first_not_of(' ');
156 if ((*LineIt)[(*LineIt).find_first_not_of(' ')] == '#')
  /external/protobuf/src/google/protobuf/stubs/
stringpiece.h 384 stringpiece_ssize_type find_first_not_of(StringPiece s,
386 stringpiece_ssize_type find_first_not_of(char c, size_type pos = 0) const;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.tcc 391 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const
404 find_first_not_of(_CharT __c, size_type __pos) const _GLIBCXX_NOEXCEPT
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
vstring.tcc 391 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const
404 find_first_not_of(_CharT __c, size_type __pos) const _GLIBCXX_NOEXCEPT
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.ops/string_find.first.not.of/
pointer_size_size.pass.cpp 12 // size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
24 assert(s.find_first_not_of(str, pos, n) == x);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
stringpiece.h 384 stringpiece_ssize_type find_first_not_of(StringPiece s,
386 stringpiece_ssize_type find_first_not_of(char c, size_type pos = 0) const;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
YAMLTraits.h 440 S.drop_front().find_first_not_of(OctalChars) == StringRef::npos)
444 S.drop_front(2).find_first_not_of(OctalChars) == StringRef::npos)
449 S.drop_front(2).find_first_not_of(HexChars) == StringRef::npos)
453 if (S.find_first_not_of(DecChars) == StringRef::npos)
500 if (S.find_first_not_of(ScalarSafeChars) != StringRef::npos)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
YAMLTraits.h 440 S.drop_front().find_first_not_of(OctalChars) == StringRef::npos)
444 S.drop_front(2).find_first_not_of(OctalChars) == StringRef::npos)
449 S.drop_front(2).find_first_not_of(HexChars) == StringRef::npos)
453 if (S.find_first_not_of(DecChars) == StringRef::npos)
500 if (S.find_first_not_of(ScalarSafeChars) != StringRef::npos)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
YAMLTraits.h 440 S.drop_front().find_first_not_of(OctalChars) == StringRef::npos)
444 S.drop_front(2).find_first_not_of(OctalChars) == StringRef::npos)
449 S.drop_front(2).find_first_not_of(HexChars) == StringRef::npos)
453 if (S.find_first_not_of(DecChars) == StringRef::npos)
500 if (S.find_first_not_of(ScalarSafeChars) != StringRef::npos)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
YAMLTraits.h 449 S.drop_front().find_first_not_of(OctalChars) == StringRef::npos)
453 S.drop_front(2).find_first_not_of(OctalChars) == StringRef::npos)
458 S.drop_front(2).find_first_not_of(HexChars) == StringRef::npos)
462 if (S.find_first_not_of(DecChars) == StringRef::npos)
509 if (S.find_first_not_of(ScalarSafeChars) != StringRef::npos)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
YAMLTraits.h 449 S.drop_front().find_first_not_of(OctalChars) == StringRef::npos)
453 S.drop_front(2).find_first_not_of(OctalChars) == StringRef::npos)
458 S.drop_front(2).find_first_not_of(HexChars) == StringRef::npos)
462 if (S.find_first_not_of(DecChars) == StringRef::npos)
509 if (S.find_first_not_of(ScalarSafeChars) != StringRef::npos)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
YAMLTraits.h 449 S.drop_front().find_first_not_of(OctalChars) == StringRef::npos)
453 S.drop_front(2).find_first_not_of(OctalChars) == StringRef::npos)
458 S.drop_front(2).find_first_not_of(HexChars) == StringRef::npos)
462 if (S.find_first_not_of(DecChars) == StringRef::npos)
509 if (S.find_first_not_of(ScalarSafeChars) != StringRef::npos)
    [all...]

Completed in 1456 milliseconds

1 2 3 4 5 67 8 91011>>