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

1 2 3 4

  /frameworks/base/media/libstagefright/include/
stagefright_string.h 27 typedef size_t size_type; typedef in class:android::string
28 static size_type npos;
33 string(const string &from, size_type start, size_type length = npos);
36 size_type size() const;
39 void erase(size_type from, size_type length);
41 size_type find(char c) const;
  /external/tinyxml/
tinystr.h 56 typedef unsigned int size_type; typedef in class:TiXmlString
59 static const size_type npos; // = -1;
77 init( static_cast<size_type>( strlen(copy) ));
82 TiXmlString (const char * str, size_type len)
97 return assign( copy, (size_type)strlen(copy));
110 return append(suffix, static_cast<size_type>( strlen(suffix) ));
133 size_type length () const { return rep_->size; }
136 size_type size () const { return rep_->size; }
142 size_type capacity () const { return rep_->capacity; }
146 const char& at (size_type index) cons
    [all...]
  /external/chromium/base/
stack_container.h 35 typedef typename std::allocator<T>::size_type size_type; typedef in class:StackAllocator
98 pointer allocate(size_type n, void* hint = 0) {
110 void deallocate(pointer p, size_type n) {
string_piece.cc 13 typedef StringPiece::size_type size_type; typedef in namespace:base
36 size_type StringPiece::copy(char* buf, size_type n, size_type pos) const {
37 size_type ret = std::min(length_ - pos, n);
42 size_type StringPiece::find(const StringPiece& s, size_type pos) const {
48 const size_type xpos = result - ptr_;
52 size_type StringPiece::find(char c, size_type pos) const
    [all...]
string_piece.h 31 typedef size_t size_type; typedef in class:base::StringPiece
35 size_type length_;
46 StringPiece(const char* offset, size_type len)
54 size_type size() const { return length_; }
55 size_type length() const { return length_; }
62 void set(const char* data, size_type len) {
70 void set(const void* data, size_type len) {
75 char operator[](size_type i) const { return ptr_[i]; }
77 void remove_prefix(size_type n) {
82 void remove_suffix(size_type n)
    [all...]
  /external/libffi/testsuite/libffi.call/
pyobjc-tc.c 36 ffi_type size_type; local
55 size_type.size = 0;/* sizeof(Size);*/
56 size_type.alignment = 0;/* __alignof__(Size);*/
57 size_type.type = FFI_TYPE_STRUCT;
58 size_type.elements = malloc(3 * sizeof(ffi_type*));
59 size_type.elements[0] = &ffi_type_float;
60 size_type.elements[1] = &ffi_type_float;
61 size_type.elements[2] = NULL;
68 rect_type.elements[1] = &size_type;
  /external/stlport/stlport/stl/
_iostream_string.h 51 typedef typename _Base::size_type size_type; typedef in class:__iostring_allocator
63 _CharT* allocate(size_type __n, const void* __ptr = 0) {
69 void deallocate(pointer __p, size_type __n) {
_queue.h 76 typedef typename _Sequence::size_type size_type; typedef in class:queue
95 size_type size() const { return c.size(); }
160 typedef typename _Sequence::size_type size_type; typedef in class:priority_queue
221 size_type size() const { return c.size(); }
_slist.c 35 # define size_type size_t macro
91 void slist<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val) {
106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) {
224 # undef size_type macro
_stack.h 65 typedef typename _Sequence::size_type size_type; typedef in class:stack
83 size_type size() const { return c.size(); }
_string_io.c 33 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type; typedef
35 // The hypothesis of this implementation is that size_type is unsigned:
36 _STLP_STATIC_ASSERT(__STATIC_CAST(size_type, -1) > 0)
43 size_type __n = __s.size();
72 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type; typedef
74 // The hypothesis of this implementation is that size_type is unsigned:
75 _STLP_STATIC_ASSERT(__STATIC_CAST(size_type, -1) > 0)
87 size_type __n
137 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type; typedef
    [all...]
_list.c 83 # define size_type size_t macro
95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
97 size_type __len = 0;
124 void list<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val) {
_string_base.h 51 typedef size_t size_type; typedef in class:_String_base
71 size_type _M_capacity() const
73 size_type _M_rest() const
80 size_type _M_capacity() const
82 size_type _M_rest() const
105 const size_type __string_max_size = size_type(-1) / sizeof(_Tp);
106 typename allocator_type::size_type __alloc_max_size = _M_start_of_storage.max_size();
_deque.c 99 # define size_type size_t macro
108 const size_type __len = size();
123 size_type __n, const value_type& __x) {
155 size_type __n = __last - __first;
183 size_type __n = __last - __first;
211 if (size_type(__index) < this->size() >> 1) {
248 if (size_type(__index) < this->size() >> 1) {
464 __iterator__ deque<_Tp,_Alloc>::_M_fill_insert_aux(iterator __pos, size_type __n,
468 size_type __length = this->size();
506 __iterator__ deque<_Tp,_Alloc>::_M_fill_insert_aux(iterator __pos, size_type __n
816 #undef size_type macro
    [all...]
_hash_map.h 68 typedef typename _Ht::size_type size_type; typedef in class:hash_map
89 explicit hash_map(size_type __n)
91 hash_map(size_type __n, const hasher& __hf)
93 hash_map(size_type __n, const hasher& __hf, const key_equal& __eql,
109 hash_map(_InputIterator __f, _InputIterator __l, size_type __n)
113 hash_map(_InputIterator __f, _InputIterator __l, size_type __n,
119 hash_map(_InputIterator __f, _InputIterator __l, size_type __n,
125 hash_map(_InputIterator __f, _InputIterator __l, size_type __n,
135 hash_map(const value_type* __f, const value_type* __l, size_type __n
259 typedef typename _Ht::size_type size_type; typedef in class:hash_multimap
    [all...]
_hash_set.h 62 typedef typename _Ht::size_type size_type; typedef in class:hash_set
85 explicit hash_set(size_type __n)
87 hash_set(size_type __n, const hasher& __hf)
90 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql,
93 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql)
95 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql,
111 hash_set(_InputIterator __f, _InputIterator __l, size_type __n)
115 hash_set(_InputIterator __f, _InputIterator __l, size_type __n,
120 hash_set(_InputIterator __f, _InputIterator __l, size_type __n
248 typedef typename _Ht::size_type size_type; typedef in class:hash_multiset
    [all...]
  /ndk/sources/android/stlport/stlport/stl/
_iostream_string.h 51 typedef typename _Base::size_type size_type; typedef in class:__iostring_allocator
63 _CharT* allocate(size_type __n, const void* __ptr = 0) {
69 void deallocate(pointer __p, size_type __n) {
_queue.h 76 typedef typename _Sequence::size_type size_type; typedef in class:queue
95 size_type size() const { return c.size(); }
160 typedef typename _Sequence::size_type size_type; typedef in class:priority_queue
221 size_type size() const { return c.size(); }
_slist.c 35 # define size_type size_t macro
91 void slist<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val) {
106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) {
224 # undef size_type macro
_stack.h 65 typedef typename _Sequence::size_type size_type; typedef in class:stack
83 size_type size() const { return c.size(); }
_string_io.c 33 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type; typedef
35 // The hypothesis of this implementation is that size_type is unsigned:
36 _STLP_STATIC_ASSERT(__STATIC_CAST(size_type, -1) > 0)
43 size_type __n = __s.size();
72 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type; typedef
74 // The hypothesis of this implementation is that size_type is unsigned:
75 _STLP_STATIC_ASSERT(__STATIC_CAST(size_type, -1) > 0)
87 size_type __n
137 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type; typedef
    [all...]
_list.c 83 # define size_type size_t macro
95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
97 size_type __len = 0;
124 void list<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val) {
_string_base.h 51 typedef size_t size_type; typedef in class:_String_base
71 size_type _M_capacity() const
73 size_type _M_rest() const
80 size_type _M_capacity() const
82 size_type _M_rest() const
105 const size_type __string_max_size = size_type(-1) / sizeof(_Tp);
106 typename allocator_type::size_type __alloc_max_size = _M_start_of_storage.max_size();
  /external/stlport/test/unit/
mvctor_declaration_test.cpp 90 typedef size_t size_type; typedef in class:std::allocator
105 pointer allocate(size_type, const void* = 0) { return 0; }
106 void deallocate(pointer, size_type) {}
107 size_type max_size() const _STLP_NOTHROW { return 0; }
  /ndk/sources/android/stlport/test/unit/
mvctor_declaration_test.cpp 90 typedef size_t size_type; typedef in class:std::allocator
105 pointer allocate(size_type, const void* = 0) { return 0; }
106 void deallocate(pointer, size_type) {}
107 size_type max_size() const _STLP_NOTHROW { return 0; }

Completed in 1245 milliseconds

1 2 3 4