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

1234

/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;
H A Dparse_filename.cpp30 typedef parts_type::size_type size_type; typedef
32 size_type const nr_parts = 6;
40 for (size_type i = 0; i < nr_parts ; ++i) {
48 size_type i = 0;
125 string::size_type pos = filename.find_last_of('/');
/external/chromium/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/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/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-stdinitializerlist-pr12086.cpp22 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
/external/eigen/Eigen/src/StlSupport/
H A Ddetails.h25 typedef size_t size_type; typedef in class:Eigen::aligned_allocator_indirection
/external/libffi/testsuite/libffi.call/
H A Dpyobjc-tc.c36 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/llvm/include/llvm/ADT/
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 DArrayRef.h34 typedef size_t size_type; typedef in class:llvm::ArrayRef
43 size_type Length;
116 for (size_type i = 0; i != Length; i++)
H A DStringRef.h46 typedef size_t size_type; typedef in class:llvm::StringRef
263 size_type find_first_of(char C, size_t From = 0) const {
271 size_type find_first_of(StringRef Chars, size_t From = 0) const;
275 size_type find_first_not_of(char C, size_t From = 0) const;
281 size_type find_first_not_of(StringRef Chars, size_t From = 0) const;
285 size_type find_last_of(char C, size_t From = npos) const {
293 size_type find_last_of(StringRef Chars, size_t From = npos) const;
297 size_type find_last_not_of(char C, size_t From = npos) const;
303 size_type find_last_not_of(StringRef Chars, size_t From = npos) const;
/external/stlport/stlport/stl/
H A D_iostream_string.h51 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) {
H A D_stack.h65 typedef typename _Sequence::size_type size_type; typedef in class:stack
83 size_type size() const { return c.size(); }
/external/tinyxml/
H A Dtinystr.h56 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 inde
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DCommon.h73 typedef typename std::vector<T, pool_allocator<T> >::size_type size_type; typedef in class:TVector
76 TVector(size_type i): std::vector<T, pool_allocator<T> >(i) {}
/external/ceres-solver/include/ceres/internal/
H A Dfixed_array.h89 typedef size_t size_type; typedef in class:ceres::internal::FixedArray
98 explicit FixedArray(size_type n);
104 inline size_type size() const { return size_; }
115 inline T& operator[](size_type i) {
123 inline const T& operator[](size_type i) const {
150 static const size_type S1 = ((inline_elements < 0)
152 static const size_type S2 = (S1 <= 0) ? 1 : S1;
153 static const size_type kInlineElements = S2;
155 size_type const size_;
166 inline FixedArray<T, S>::FixedArray(typename FixedArray<T, S>::size_type
[all...]
/external/chromium/base/
H A Dstack_container.h36 typedef typename std::allocator<T>::size_type size_type; typedef in class:StackAllocator
99 pointer allocate(size_type n, void* hint = 0) {
111 void deallocate(pointer p, size_type n) {
H A Dstring_piece.cc13 typedef StringPiece::size_type size_type; typedef in namespace:base
31 size_type StringPiece::copy(char* buf, size_type n, size_type pos) const {
32 size_type ret = std::min(length_ - pos, n);
37 size_type StringPiece::find(const StringPiece& s, size_type pos) const {
43 const size_type xpos = result - ptr_;
47 size_type StringPiec
[all...]
/external/clang/include/clang/Driver/
H A DJob.h85 typedef list_type::size_type size_type; typedef in class:clang::driver::JobList
104 size_type size() const { return Jobs.size(); }
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-scalars.cpp25 typedef size_t size_type; typedef in class:std::initializer_list

Completed in 1352 milliseconds

1234