Searched refs:__vec (Results 1 – 3 of 3) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ctype.h | 81 const char* is(const char* __low, const char* __high, mask* __vec) const { in is() argument 82 for (const char* __p = __low;__p != __high; ++__p, ++__vec) { in is() 83 *__vec = _M_ctype_table[(unsigned char)*__p]; in is() 187 mask* __vec) const in is() argument 188 { return do_is(__low, __high, __vec); } in is()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | __locale | 444 const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const 446 return do_is(__low, __high, __vec); 514 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const; 545 const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const 547 for (; __low != __high; ++__low, ++__vec) 548 *__vec = isascii(*__low) ? __tab_[static_cast<int>(*__low)] : 0; 683 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const;
|
D | vector | 3237 size_t operator()(const vector<bool, _Allocator>& __vec) const _NOEXCEPT 3238 {return __vec.__hash_code();}
|