HomeSort by relevance Sort by last modified time
    Searched full:npos (Results 301 - 325 of 874) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
basic_string.h 164 // value that will be returned by max_size(). (Whereas npos
169 // npos = sizeof(_Rep) + (m * sizeof(_CharT)) + sizeof(_CharT)
171 // m = ((npos - sizeof(_Rep))/sizeof(CharT)) - 1
285 static const size_type npos = static_cast<size_type>(-1); member in class:basic_string
463 size_type __n = npos);
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_string.h 164 // value that will be returned by max_size(). (Whereas npos
169 // npos = sizeof(_Rep) + (m * sizeof(_CharT)) + sizeof(_CharT)
171 // m = ((npos - sizeof(_Rep))/sizeof(CharT)) - 1
285 static const size_type npos = static_cast<size_type>(-1); member in class:basic_string
468 size_type __n = npos);
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 644 //We are trying to get a const reference to the npos string static member to
646 //a bug of STLport which was simply declaring npos without instanciating it.
648 string::size_type const& npos_local = string::npos;
650 # define npos_local string::npos
653 CPPUNIT_ASSERT( s.find("one", string::npos) == npos_local );
674 * returns npos.
688 * if ( p != string::npos ) { // normal
700 /* CPPUNIT_CHECK( p == string::npos ); */
719 CPPUNIT_CHECK( p == string::npos );
731 /* CPPUNIT_CHECK( p == string::npos ); */
    [all...]
  /ndk/tests/device/test-stlport/unit/
string_test.cpp 644 //We are trying to get a const reference to the npos string static member to
646 //a bug of STLport which was simply declaring npos without instanciating it.
648 string::size_type const& npos_local = string::npos;
650 # define npos_local string::npos
653 CPPUNIT_ASSERT( s.find("one", string::npos) == npos_local );
674 * returns npos.
688 * if ( p != string::npos ) { // normal
700 /* CPPUNIT_CHECK( p == string::npos ); */
719 CPPUNIT_CHECK( p == string::npos );
731 /* CPPUNIT_CHECK( p == string::npos ); */
    [all...]
  /art/cmdline/
cmdline.h 238 if (file_name_idx == std::string::npos) { // Prevent a InsertIsaDirectory check failure.
245 if (file_name_idx != std::string::npos) {
250 if (ancestor_dirs_idx != std::string::npos) {
  /art/runtime/
indirect_reference_table_test.cc 33 EXPECT_EQ(oss.str().find("java.lang.Object"), std::string::npos) << oss.str();
35 EXPECT_NE(oss.str().find("1 of java.lang.Object"), std::string::npos) << oss.str();
39 std::string::npos)
dex_file-inl.h 93 if (lhs_shorty.find('L', 1) != StringPiece::npos) {
  /external/ceres-solver/internal/ceres/
program_test.cc 404 string::npos) << error;
415 EXPECT_NE(error.find("infeasible bound"), string::npos) << error;
427 EXPECT_NE(error.find("infeasible value"), string::npos) << error;
  /external/libchrome/base/trace_event/
trace_event_impl.cc 230 if (real.find('.') == std::string::npos &&
231 real.find('e') == std::string::npos &&
232 real.find('E') == std::string::npos) {
  /external/webrtc/webrtc/call/
bitrate_estimator_tests.cc 59 if (message.find("BitrateEstimator") != std::string::npos &&
60 message.find("packet is missing") == std::string::npos) {
71 EXPECT_TRUE(a.find(b) != std::string::npos) << a << " != " << b;
  /external/webrtc/webrtc/examples/peerconnection/server/
peer_channel.cc 197 if (found == std::string::npos)
221 if (args == std::string::npos)
227 if (found == std::string::npos)
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 160 if (end_pos != StringType::npos)
167 if (pos != StringType::npos) {
183 if (pos == StringType::npos)
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 302 fullPath += path2.substr(1, string::npos);
317 while ((p = s->find('\\', p)) != std::string::npos) {
410 if (p == std::string::npos) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/
dumbdbm.py 134 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
135 f.write('\0'*(npos-pos))
136 pos = npos
  /prebuilts/gdb/linux-x86/lib/python2.7/
dumbdbm.py 134 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
135 f.write('\0'*(npos-pos))
136 pos = npos
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dumbdbm.py 134 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
135 f.write('\0'*(npos-pos))
136 pos = npos
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dumbdbm.py 134 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
135 f.write('\0'*(npos-pos))
136 pos = npos
  /art/compiler/optimizing/
optimizing_unit_test.h 112 DCHECK_NE(pos, std::string::npos)
  /bionic/tools/relocation_packer/src/
main.cc 33 if (last_slash != temporary.npos) {
  /bootable/recovery/
recovery-refresh.cpp 88 if (dot == std::string::npos) {
  /external/google-breakpad/src/client/mac/tests/
spawn_child_process.h 91 if (pos == string::npos)
  /external/google-breakpad/src/common/windows/
string_utils.cc 41 if (slash_pos != wstring::npos) {
  /external/llvm/lib/CodeGen/AsmPrinter/
WinCodeViewLineTables.cpp 51 while ((Cursor = Filepath.find("\\.\\", Cursor)) != std::string::npos)
57 while ((Cursor = Filepath.find("\\..\\", Cursor)) != std::string::npos) {
63 if (PrevSlash == std::string::npos)
74 while ((Cursor = Filepath.find("\\\\", Cursor)) != std::string::npos)
  /external/llvm/lib/Support/Unix/
Host.inc 43 if (DarwinDashIdx != std::string::npos) {
  /external/opencv3/apps/traincascade/
traincascade_features.h 94 int npos, nneg; member in class:CvFeatureEvaluator

Completed in 2137 milliseconds

<<11121314151617181920>>