HomeSort by relevance Sort by last modified time
    Searched defs:npos (Results 1 - 25 of 25) sorted by null

  /external/stlport/stlport/stl/
_string_npos.h 15 /* This header contains npos definition used in basic_string and rope
21 enum { npos = -1 }; enumerator in enum:__anon7552
24 static const size_t npos; variable
26 static const size_t npos = ~(size_t)0; variable
_string.c 428 return npos;
434 return __result != this->_M_Finish() ? __result - this->_M_Start() : npos;
441 return npos;
447 return __result != this->_M_Finish() ? __result - this->_M_Start() : npos;
456 return npos;
464 return __result != __last ? __result - this->_M_Start() : npos;
472 return npos;
478 return __rresult != rend() ? (__rresult.base() - 1) - begin() : npos;
485 return npos;
490 return __result != end() ? __result - begin() : npos;
658 const size_t basic_string<_CharT, _Traits, _Alloc>::npos; member in class:_Alloc
    [all...]
_string.h 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
788 _Self& erase(size_type __pos = 0, size_type __n = npos) {
1089 const size_t basic_string<_CharT, _Traits, _Alloc>::npos = ~(size_t) 0; member in class:basic_string
    [all...]
_rope.c 911 if (__result_pos == size()) __result_pos = npos;
1306 const size_t rope<_CharT, _Alloc>::npos; member in class:_Alloc
    [all...]
_rope.h 2064 const size_t rope<_CharT, _Alloc>::npos = ~(size_t) 0; member in class:rope
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string_npos.h 15 /* This header contains npos definition used in basic_string and rope
21 enum { npos = -1 }; enumerator in enum:__anon11117
24 static const size_t npos; variable
26 static const size_t npos = ~(size_t)0; variable
_string.c 428 return npos;
434 return __result != this->_M_Finish() ? __result - this->_M_Start() : npos;
441 return npos;
447 return __result != this->_M_Finish() ? __result - this->_M_Start() : npos;
456 return npos;
464 return __result != __last ? __result - this->_M_Start() : npos;
472 return npos;
478 return __rresult != rend() ? (__rresult.base() - 1) - begin() : npos;
485 return npos;
490 return __result != end() ? __result - begin() : npos;
658 const size_t basic_string<_CharT, _Traits, _Alloc>::npos; member in class:_Alloc
    [all...]
_string.h 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
788 _Self& erase(size_type __pos = 0, size_type __n = npos) {
1089 const size_t basic_string<_CharT, _Traits, _Alloc>::npos = ~(size_t) 0; member in class:basic_string
    [all...]
_rope.c 911 if (__result_pos == size()) __result_pos = npos;
1306 const size_t rope<_CharT, _Alloc>::npos; member in class:_Alloc
    [all...]
_rope.h 2064 const size_t rope<_CharT, _Alloc>::npos = ~(size_t) 0; member in class:rope
    [all...]
  /external/chromium/third_party/icu/source/common/
stringpiece.cpp 51 const int32_t StringPiece::npos; member in class:StringPiece
  /external/icu4c/common/
stringpiece.cpp 75 const int32_t StringPiece::npos; member in class:StringPiece
  /frameworks/base/media/libstagefright/include/
stagefright_string.h 28 static size_type npos; member in class:android::string
33 string(const string &from, size_type start, size_type length = npos);
  /external/chromium/base/i18n/
word_iterator.cc 11 const size_t npos = -1; variable
17 prev_(npos),
72 pos_ = npos;
85 DCHECK(prev_ != npos && pos_ != npos);
  /external/chromium/third_party/icu/public/common/unicode/
stringpiece.h 171 static const int32_t npos = 0x7fffffff; member in class:StringPiece
181 StringPiece substr(int32_t pos, int32_t len = npos) const {
  /external/icu4c/common/unicode/
stringpiece.h 186 static const int32_t npos = 0x7fffffff; member in class:StringPiece
196 StringPiece substr(int32_t pos, int32_t len = npos) const {
  /external/tinyxml/
tinystr.cpp 35 const TiXmlString::size_type TiXmlString::npos = static_cast< size_type >(-1); member in class:TiXmlString
tinystr.h 59 static const size_type npos; // = -1; member in class:TiXmlString
159 // find a char in a string. Return TiXmlString::npos if not found
165 // find a char in a string from an offset. Return TiXmlString::npos if not found
168 if (offset >= length()) return npos;
174 return npos;
  /frameworks/base/media/libstagefright/
string.cpp 24 string::size_type string::npos = (string::size_type)-1; member in class:android::string
35 if (length == npos) {
67 return index < 0 ? npos : (size_type)index;
  /external/chromium/base/
string_piece.cc 44 return npos;
49 return xpos + s.length_ <= length_ ? xpos : npos;
54 return npos;
57 return result != ptr_ + length_ ? result - ptr_ : npos;
62 return npos;
69 return result != last ? result - ptr_ : npos;
74 return npos;
82 return npos;
105 return npos;
118 return npos;
217 const StringPiece::size_type StringPiece::npos = size_type(-1); member in class:base::StringPiece
    [all...]
string_piece.h 121 static const size_type npos; member in class:base::StringPiece
142 size_type rfind(const StringPiece& s, size_type pos = npos) const;
143 size_type rfind(char c, size_type pos = npos) const;
151 size_type find_last_of(const StringPiece& s, size_type pos = npos) const;
152 size_type find_last_of(char c, size_type pos = npos) const {
155 size_type find_last_not_of(const StringPiece& s, size_type pos = npos) const;
156 size_type find_last_not_of(char c, size_type pos = npos) const;
158 StringPiece substr(size_type pos, size_type n = npos) const;
  /external/stlport/stlport/stl/debug/
_string.h 101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
491 _Self& erase(size_type __pos = 0, size_type __n = npos) {
511 _Self substr(size_type __pos = 0, size_type __n = npos) const
711 size_type rfind(const _Self& __s, size_type __pos = npos) const
713 size_type rfind(const _CharT* __s, size_type __pos = npos) const {
723 size_type rfind(_CharT __c, size_type __pos = npos) const
743 size_type find_last_of(const _Self& __s, size_type __pos = npos) const
745 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const {
755 size_type find_last_of(_CharT __c, size_type __pos = npos) const
775 size_type find_last_not_of(const _Self& __s, size_type __pos = npos) cons
814 const size_t basic_string<_CharT, _Traits, _Alloc>::npos = ~(size_t) 0; member in class:basic_string
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
491 _Self& erase(size_type __pos = 0, size_type __n = npos) {
511 _Self substr(size_type __pos = 0, size_type __n = npos) const
711 size_type rfind(const _Self& __s, size_type __pos = npos) const
713 size_type rfind(const _CharT* __s, size_type __pos = npos) const {
723 size_type rfind(_CharT __c, size_type __pos = npos) const
743 size_type find_last_of(const _Self& __s, size_type __pos = npos) const
745 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const {
755 size_type find_last_of(_CharT __c, size_type __pos = npos) const
775 size_type find_last_not_of(const _Self& __s, size_type __pos = npos) cons
814 const size_t basic_string<_CharT, _Traits, _Alloc>::npos = ~(size_t) 0; member in class:basic_string
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
vstring.h 89 static const size_type npos = static_cast<size_type>(-1); member in class:__versa_string
189 size_type __n = npos)
231 __s + npos, __a) { }
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
basic_string.h 156 // value that will be returned by max_size(). (Whereas npos
161 // npos = sizeof(_Rep) + (m * sizeof(_CharT)) + sizeof(_CharT)
163 // m = ((npos - sizeof(_Rep))/sizeof(CharT)) - 1
265 static const size_type npos = static_cast<size_type>(-1); member in class:basic_string
439 size_type __n = npos);
    [all...]

Completed in 1075 milliseconds