Searched defs:size_type (Results 1 - 25 of 122) sorted by relevance

12345

/external/oprofile/libpp/
H A Dsymbol_container.h33 typedef symbols_t::size_type size_type; typedef in class:symbol_container
36 size_type size() const;
/external/chromium_org/chrome/browser/sessions/
H A Dsession_command.h31 typedef uint16 size_type; typedef in class:SessionCommand
35 SessionCommand(id_type id, size_type size);
49 size_type size() const { return static_cast<size_type>(contents_.size()); }
H A Dsession_backend.h36 typedef SessionCommand::size_type size_type; typedef in class:SessionBackend
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1-retmem.cpp8 typedef int size_type; typedef in struct:X0
11 size_type f0() const;
17 typename X0<T>::size_type X0<T>::f0() const {
H A Dp1.cpp5 typedef int size_type; typedef in class:X0
14 void f1(size_type) const;
15 void f2(size_type) const;
16 void f3(size_type) const;
38 void X0<X, Y>::f2(size_type) const { }
41 void X0<X, Y>::f3(size_type) const {
/external/libcxx/test/containers/container.adaptors/priority.queue/
H A Dtypes.pass.cpp21 // typedef typename container_type::size_type size_type;
46 typedef int size_type; typedef in struct:C
56 static_assert((std::is_same<std::priority_queue<int>::size_type, std::vector<int>::size_type>::value), "");
/external/libcxx/test/containers/container.adaptors/queue/queue.defn/
H A Dtypes.pass.cpp20 // typedef typename container_type::size_type size_type;
44 typedef int size_type; typedef in struct:C
54 static_assert((std::is_same<std::queue<int>::size_type, std::deque<int>::size_type>::value), "");
/external/libcxx/test/containers/container.adaptors/stack/stack.defn/
H A Dtypes.pass.cpp20 // typedef typename container_type::size_type size_type;
45 typedef int size_type; typedef in struct:C
55 static_assert((std::is_same<std::stack<int>::size_type, std::deque<int>::size_type>::value), "");
/external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/
H A Dsize_type.pass.cpp15 // typedef Alloc::size_type | size_t size_type;
26 typedef unsigned short size_type; typedef in struct:A
58 static_assert((std::is_same<std::allocator_traits<A<char> >::size_type, unsigned short>::value), "");
59 static_assert((std::is_same<std::allocator_traits<B<char> >::size_type,
61 static_assert((std::is_same<std::allocator_traits<C<char> >::size_type,
/external/oprofile/libutil++/
H A Dgrowable_vector.h25 typedef typename container_type::size_type size_type; typedef in class:growable_vector
32 T operator[](size_type index) const {
44 T & operator[](size_type index) {
58 size_type min_size = min(container.size(), rhs.container.size());
59 for (size_type i = 0 ; i < min_size; ++i)
74 size_type min_size = min(container.size(), rhs.container.size());
75 for (size_type i = 0 ; i < min_size; ++i)
83 size_type size() const {
89 void fill(size_type siz
[all...]
H A Dsparse_array.h18 typedef typename container_type::size_type size_type; typedef in class:sparse_array
28 T operator[](size_type index) const {
41 T & operator[](size_type index) {
77 size_type size() const {
H A Dunique_storage.h70 typedef typename stored_values::size_type size_type; typedef in struct:unique_storage::id_value
72 explicit id_value(size_type s) : id(s) {}
75 size_type id;
/external/llvm/include/llvm/ADT/
H A DSmallSet.h40 typedef size_t size_type; typedef in class:llvm::SmallSet
47 size_type size() const {
52 size_type count(const T &V) const {
H A DSetVector.h47 typedef typename vector_type::size_type size_type; typedef in class:llvm::SetVector
64 size_type size() const {
95 const_reference operator[](size_type n) const {
156 size_type count(const key_type &key) const {
H A DSparseBitVector.h48 typedef unsigned size_type; typedef in struct:llvm::SparseBitVectorElement
124 size_type count() const {
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DCommon.h65 typedef typename std::vector<T, pool_allocator<T> >::size_type size_type; typedef in class:TVector
68 TVector(size_type i): std::vector<T, pool_allocator<T> >(i) {}
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinystr.h59 typedef size_t size_type; typedef in class:TiXmlString
62 static const size_type npos; // = -1;
80 init( static_cast<size_type>( strlen(copy) ));
85 TIXML_EXPLICIT TiXmlString ( const char * str, size_type len) : rep_(0)
99 return assign( copy, (size_type)strlen(copy));
111 return append(suffix, static_cast<size_type>( strlen(suffix) ));
134 size_type length () const { return rep_->size; }
137 size_type size () const { return rep_->size; }
143 size_type capacity () const { return rep_->capacity; }
147 const char& at (size_type inde
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dstl_allocator.h61 typedef size_t size_type; typedef in class:STL_Allocator
81 pointer allocate(size_type n, const void* = 0) {
85 void deallocate(pointer p, size_type n) { Alloc::Free(p, n * sizeof(T)); }
87 size_type max_size() const { return size_t(-1) / sizeof(T); }
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dstl_allocator.h61 typedef size_t size_type; typedef in class:STL_Allocator
81 pointer allocate(size_type n, const void* = 0) {
85 void deallocate(pointer p, size_type n) { Alloc::Free(p, n * sizeof(T)); }
87 size_type max_size() const { return size_t(-1) / sizeof(T); }
/external/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-stdinitializerlist-pr12086.cpp32 typedef size_t size_type; typedef in class:std::initializer_list
H A Dcxx0x-initializer-stdinitializerlist-startend.cpp22 typedef size_t size_type; typedef in class:std::initializer_list
H A Dlpad-linetable.cpp44 typedef size_t size_type; typedef in class:std::vector
49 size_type
/external/eigen/Eigen/src/StlSupport/
H A Ddetails.h25 typedef size_t size_type; typedef in class:Eigen::aligned_allocator_indirection
/external/libcxx/test/containers/
H A Dstack_allocator.h27 typedef std::size_t size_type; typedef in class:stack_allocator
39 pointer allocate(size_type n, const void* = 0)
52 void deallocate(pointer p, size_type n)
58 size_type max_size() const {return N;}
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinystr.h59 typedef size_t size_type; typedef in class:TiXmlString
62 static const size_type npos; // = -1;
80 init( static_cast<size_type>( strlen(copy) ));
85 TIXML_EXPLICIT TiXmlString ( const char * str, size_type len) : rep_(0)
99 return assign( copy, (size_type)strlen(copy));
111 return append(suffix, static_cast<size_type>( strlen(suffix) ));
134 size_type length () const { return rep_->size; }
137 size_type size () const { return rep_->size; }
143 size_type capacity () const { return rep_->capacity; }
147 const char& at (size_type inde
[all...]

Completed in 4105 milliseconds

12345