/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
stl_list.h | 1081 insert(iterator __position, value_type&& __x) function in class:list 1098 insert(iterator __p, initializer_list<value_type> __l) function in class:list 1115 insert(iterator __position, size_type __n, const value_type& __x) function in class:list 1136 insert(iterator __position, _InputIterator __first, function in class:list [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/ |
vstring.h | 915 * @brief Insert multiple characters. 916 * @param __p Iterator referencing location in string to insert at. 917 * @param __n Number of characters to insert 918 * @param __c The character to insert. 928 insert(iterator __p, size_type __n, _CharT __c) function in class:__versa_string 932 * @brief Insert a range of characters. 933 * @param __p Iterator referencing location in string to insert at. 945 insert(iterator __p, _InputIterator __beg, _InputIterator __end) function in class:__versa_string 950 * @brief Insert an initializer_list of characters. 951 * @param __p Iterator referencing location in string to insert at 956 insert(iterator __p, std::initializer_list<_CharT> __l) function in class:__versa_string 973 insert(size_type __pos1, const __versa_string& __str) function in class:__versa_string 996 insert(size_type __pos1, const __versa_string& __str, function in class:__versa_string 1019 insert(size_type __pos, const _CharT* __s, size_type __n) function in class:__versa_string 1038 insert(size_type __pos, const _CharT* __s) function in class:__versa_string 1062 insert(size_type __pos, size_type __n, _CharT __c) function in class:__versa_string 1080 insert(iterator __p, _CharT __c) function in class:__versa_string [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/ |
hashtable.h | 339 private: // Find, insert and erase helper functions 342 // better to just specialize insert on __unique_keys. There may be a 372 // Insert and erase 374 insert(const value_type& __v) function in class:tr1::_Hashtable 379 insert(iterator, const value_type& __v) function in class:tr1::_Hashtable 380 { return iterator(_Insert_Conv_Type()(this->insert(__v))); } 383 insert(const_iterator, const value_type& __v) function in class:tr1::_Hashtable 384 { return const_iterator(_Insert_Conv_Type()(this->insert(__v))); } 388 insert(_InputIterator __first, _InputIterator __last); 567 this->insert(*__f) 978 insert(_InputIterator __first, _InputIterator __last) function in class:tr1::_Hashtable [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_bvector.h | 773 insert(iterator __position, const bool& __x = bool()) function in class:vector 786 insert(iterator __position, function in class:vector 794 insert(iterator __position, size_type __n, const bool& __x) function in class:vector 798 void insert(iterator __p, initializer_list<bool> __l) function in class:vector 799 { this->insert(__p, __l.begin(), __l.end()); } 828 insert(end(), __new_size - size(), __x); 925 insert(end(), __n - size(), __x); 946 insert(end(), __first, __last); 962 insert(end(), __mid, __last); 994 __pos = insert(__pos, *__first) [all...] |
stl_list.h | 955 * This function will insert an object of type T constructed 972 * This function will insert a copy of the given value before 978 insert(iterator __position, const value_type& __x); 987 * This function will insert a copy of the given rvalue before 993 insert(iterator __position, value_type&& __x) function in class:list 1002 * This function will insert copies of the data in the 1010 insert(iterator __p, initializer_list<value_type> __l) function in class:list 1011 { this->insert(__p, __l.begin(), __l.end()); } 1020 * This function will insert a specified number of copies of the 1027 insert(iterator __position, size_type __n, const value_type& __x function in class:list 1048 insert(iterator __position, _InputIterator __first, function in class:list [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/ |
vstring.h | 880 * @brief Insert multiple characters. 881 * @param __p Iterator referencing location in string to insert at. 882 * @param __n Number of characters to insert 883 * @param __c The character to insert. 893 insert(iterator __p, size_type __n, _CharT __c) function in class:__versa_string 897 * @brief Insert a range of characters. 898 * @param __p Iterator referencing location in string to insert at. 910 insert(iterator __p, _InputIterator __beg, _InputIterator __end) function in class:__versa_string 915 * @brief Insert an initializer_list of characters. 916 * @param __p Iterator referencing location in string to insert at 921 insert(iterator __p, std::initializer_list<_CharT> __l) function in class:__versa_string 938 insert(size_type __pos1, const __versa_string& __str) function in class:__versa_string 961 insert(size_type __pos1, const __versa_string& __str, function in class:__versa_string 984 insert(size_type __pos, const _CharT* __s, size_type __n) function in class:__versa_string 1003 insert(size_type __pos, const _CharT* __s) function in class:__versa_string 1027 insert(size_type __pos, size_type __n, _CharT __c) function in class:__versa_string 1045 insert(iterator __p, _CharT __c) function in class:__versa_string [all...] |
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_list.h | 311 { this->insert(begin(), __n, _STLP_DEFAULT_CONSTRUCTED(value_type)); } 314 { this->insert(begin(), __n, __val); } 318 { this->insert(begin(), __n, __val); } 321 // We don't need any dispatching tricks here, because insert does all of 420 iterator insert(iterator __pos, const_reference __x = value_type()) function in class:list 422 iterator insert(iterator __pos, const_reference __x) 456 insert(__pos, *__first); 462 insert(__pos, *__first); 468 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { function in class:list 485 void insert(iterator __pos, const value_type* __first, const value_type* __last) 498 void insert(iterator __pos, size_type __n, const_reference __x) function in class:list 512 iterator insert(iterator __pos) function in class:list [all...] |
_slist.h | 635 iterator insert(iterator __pos, const value_type& __x = _Tp()) { function in class:slist 637 iterator insert(iterator __pos, const value_type& __x) { 644 iterator insert(iterator __pos) { function in class:slist 650 void insert(iterator __pos, size_type __n, const value_type& __x) { function in class:slist 658 void insert(iterator __pos, _InIter __first, _InIter __last) { function in class:slist 660 void insert(iterator __pos, const value_type* __first, 665 void insert(iterator __pos, const_iterator __first, const_iterator __last) { 745 insert(__pos, __x.begin(), __x.end()); 759 insert(__pos, *__i); 774 insert(__pos, __first, __last) [all...] |
_string.h | 607 public: // Insert 608 _Self& insert(size_type __pos, const _Self& __s) { function in class:basic_string 617 _Self& insert(size_type __pos, const _Self& __s, function in class:basic_string 628 _Self& insert(size_type __pos, const _CharT* __s, size_type __n) { function in class:basic_string 638 _Self& insert(size_type __pos, const _CharT* __s) { function in class:basic_string 649 _Self& insert(size_type __pos, size_type __n, _CharT __c) { function in class:basic_string 654 insert(begin() + __pos, __n, __c); 658 iterator insert(iterator __p, _CharT __c) { function in class:basic_string 668 void insert(iterator __p, size_t __n, _CharT __c); 670 _STLP_PRIVATE: // Helper functions for insert 772 void insert(iterator __p, _InputIter __first, _InputIter __last) { function in class:basic_string 781 void insert(iterator __p, const _CharT* __f, const _CharT* __l) { function in class:basic_string [all...] |
_vector.h | 302 //As the vector container is a back insert oriented container it 355 insert(end(), __first, __last); 391 iterator insert(iterator __pos, const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)); 393 iterator insert(iterator __pos, const _Tp& __x); 398 iterator insert(iterator __pos) { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } function in class:vector 515 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { function in class:vector 526 __pos = insert(__pos, *__first); 537 void insert(iterator __pos, 559 void insert (iterator __pos, size_type __n, const _Tp& __x function in class:vector [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_bvector.h | 773 insert(iterator __position, const bool& __x = bool()) function in class:vector 786 insert(iterator __position, function in class:vector 794 insert(iterator __position, size_type __n, const bool& __x) function in class:vector 798 void insert(iterator __p, initializer_list<bool> __l) function in class:vector 799 { this->insert(__p, __l.begin(), __l.end()); } 828 insert(end(), __new_size - size(), __x); 925 insert(end(), __n - size(), __x); 946 insert(end(), __first, __last); 962 insert(end(), __mid, __last); 994 __pos = insert(__pos, *__first) [all...] |
stl_list.h | 955 * This function will insert an object of type T constructed 972 * This function will insert a copy of the given value before 978 insert(iterator __position, const value_type& __x); 987 * This function will insert a copy of the given rvalue before 993 insert(iterator __position, value_type&& __x) function in class:list 1002 * This function will insert copies of the data in the 1010 insert(iterator __p, initializer_list<value_type> __l) function in class:list 1011 { this->insert(__p, __l.begin(), __l.end()); } 1020 * This function will insert a specified number of copies of the 1027 insert(iterator __position, size_type __n, const value_type& __x function in class:list 1048 insert(iterator __position, _InputIterator __first, function in class:list [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/ |
vstring.h | 880 * @brief Insert multiple characters. 881 * @param __p Iterator referencing location in string to insert at. 882 * @param __n Number of characters to insert 883 * @param __c The character to insert. 893 insert(iterator __p, size_type __n, _CharT __c) function in class:__versa_string 897 * @brief Insert a range of characters. 898 * @param __p Iterator referencing location in string to insert at. 910 insert(iterator __p, _InputIterator __beg, _InputIterator __end) function in class:__versa_string 915 * @brief Insert an initializer_list of characters. 916 * @param __p Iterator referencing location in string to insert at 921 insert(iterator __p, std::initializer_list<_CharT> __l) function in class:__versa_string 938 insert(size_type __pos1, const __versa_string& __str) function in class:__versa_string 961 insert(size_type __pos1, const __versa_string& __str, function in class:__versa_string 984 insert(size_type __pos, const _CharT* __s, size_type __n) function in class:__versa_string 1003 insert(size_type __pos, const _CharT* __s) function in class:__versa_string 1027 insert(size_type __pos, size_type __n, _CharT __c) function in class:__versa_string 1045 insert(iterator __p, _CharT __c) function in class:__versa_string [all...] |
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_list.h | 311 { this->insert(begin(), __n, _STLP_DEFAULT_CONSTRUCTED(value_type)); } 314 { this->insert(begin(), __n, __val); } 318 { this->insert(begin(), __n, __val); } 321 // We don't need any dispatching tricks here, because insert does all of 420 iterator insert(iterator __pos, const_reference __x = value_type()) function in class:list 422 iterator insert(iterator __pos, const_reference __x) 456 insert(__pos, *__first); 462 insert(__pos, *__first); 468 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { function in class:list 485 void insert(iterator __pos, const value_type* __first, const value_type* __last) 498 void insert(iterator __pos, size_type __n, const_reference __x) function in class:list 512 iterator insert(iterator __pos) function in class:list [all...] |
_slist.h | 635 iterator insert(iterator __pos, const value_type& __x = _Tp()) { function in class:slist 637 iterator insert(iterator __pos, const value_type& __x) { 644 iterator insert(iterator __pos) { function in class:slist 650 void insert(iterator __pos, size_type __n, const value_type& __x) { function in class:slist 658 void insert(iterator __pos, _InIter __first, _InIter __last) { function in class:slist 660 void insert(iterator __pos, const value_type* __first, 665 void insert(iterator __pos, const_iterator __first, const_iterator __last) { 745 insert(__pos, __x.begin(), __x.end()); 759 insert(__pos, *__i); 774 insert(__pos, __first, __last) [all...] |
_string.h | 607 public: // Insert 608 _Self& insert(size_type __pos, const _Self& __s) { function in class:basic_string 617 _Self& insert(size_type __pos, const _Self& __s, function in class:basic_string 628 _Self& insert(size_type __pos, const _CharT* __s, size_type __n) { function in class:basic_string 638 _Self& insert(size_type __pos, const _CharT* __s) { function in class:basic_string 649 _Self& insert(size_type __pos, size_type __n, _CharT __c) { function in class:basic_string 654 insert(begin() + __pos, __n, __c); 658 iterator insert(iterator __p, _CharT __c) { function in class:basic_string 668 void insert(iterator __p, size_t __n, _CharT __c); 670 _STLP_PRIVATE: // Helper functions for insert 772 void insert(iterator __p, _InputIter __first, _InputIter __last) { function in class:basic_string 781 void insert(iterator __p, const _CharT* __f, const _CharT* __l) { function in class:basic_string [all...] |
_vector.h | 302 //As the vector container is a back insert oriented container it 355 insert(end(), __first, __last); 391 iterator insert(iterator __pos, const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)); 393 iterator insert(iterator __pos, const _Tp& __x); 398 iterator insert(iterator __pos) { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } function in class:vector 515 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { function in class:vector 526 __pos = insert(__pos, *__first); 537 void insert(iterator __pos, 559 void insert (iterator __pos, size_type __n, const _Tp& __x function in class:vector [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_bvector.h | 773 insert(iterator __position, const bool& __x = bool()) function in class:vector 786 insert(iterator __position, function in class:vector 794 insert(iterator __position, size_type __n, const bool& __x) function in class:vector 798 void insert(iterator __p, initializer_list<bool> __l) function in class:vector 799 { this->insert(__p, __l.begin(), __l.end()); } 828 insert(end(), __new_size - size(), __x); 925 insert(end(), __n - size(), __x); 946 insert(end(), __first, __last); 962 insert(end(), __mid, __last); 994 __pos = insert(__pos, *__first) [all...] |
stl_list.h | 955 * This function will insert an object of type T constructed 972 * This function will insert a copy of the given value before 978 insert(iterator __position, const value_type& __x); 987 * This function will insert a copy of the given rvalue before 993 insert(iterator __position, value_type&& __x) function in class:list 1002 * This function will insert copies of the data in the 1010 insert(iterator __p, initializer_list<value_type> __l) function in class:list 1011 { this->insert(__p, __l.begin(), __l.end()); } 1020 * This function will insert a specified number of copies of the 1027 insert(iterator __position, size_type __n, const value_type& __x function in class:list 1048 insert(iterator __position, _InputIterator __first, function in class:list [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/ |
vstring.h | 880 * @brief Insert multiple characters. 881 * @param __p Iterator referencing location in string to insert at. 882 * @param __n Number of characters to insert 883 * @param __c The character to insert. 893 insert(iterator __p, size_type __n, _CharT __c) function in class:__versa_string 897 * @brief Insert a range of characters. 898 * @param __p Iterator referencing location in string to insert at. 910 insert(iterator __p, _InputIterator __beg, _InputIterator __end) function in class:__versa_string 915 * @brief Insert an initializer_list of characters. 916 * @param __p Iterator referencing location in string to insert at 921 insert(iterator __p, std::initializer_list<_CharT> __l) function in class:__versa_string 938 insert(size_type __pos1, const __versa_string& __str) function in class:__versa_string 961 insert(size_type __pos1, const __versa_string& __str, function in class:__versa_string 984 insert(size_type __pos, const _CharT* __s, size_type __n) function in class:__versa_string 1003 insert(size_type __pos, const _CharT* __s) function in class:__versa_string 1027 insert(size_type __pos, size_type __n, _CharT __c) function in class:__versa_string 1045 insert(iterator __p, _CharT __c) function in class:__versa_string [all...] |
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_list.h | 311 { this->insert(begin(), __n, _STLP_DEFAULT_CONSTRUCTED(value_type)); } 314 { this->insert(begin(), __n, __val); } 318 { this->insert(begin(), __n, __val); } 321 // We don't need any dispatching tricks here, because insert does all of 420 iterator insert(iterator __pos, const_reference __x = value_type()) function in class:list 422 iterator insert(iterator __pos, const_reference __x) 456 insert(__pos, *__first); 462 insert(__pos, *__first); 468 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { function in class:list 485 void insert(iterator __pos, const value_type* __first, const value_type* __last) 498 void insert(iterator __pos, size_type __n, const_reference __x) function in class:list 512 iterator insert(iterator __pos) function in class:list [all...] |
_slist.h | 635 iterator insert(iterator __pos, const value_type& __x = _Tp()) { function in class:slist 637 iterator insert(iterator __pos, const value_type& __x) { 644 iterator insert(iterator __pos) { function in class:slist 650 void insert(iterator __pos, size_type __n, const value_type& __x) { function in class:slist 658 void insert(iterator __pos, _InIter __first, _InIter __last) { function in class:slist 660 void insert(iterator __pos, const value_type* __first, 665 void insert(iterator __pos, const_iterator __first, const_iterator __last) { 745 insert(__pos, __x.begin(), __x.end()); 759 insert(__pos, *__i); 774 insert(__pos, __first, __last) [all...] |
_string.h | 607 public: // Insert 608 _Self& insert(size_type __pos, const _Self& __s) { function in class:basic_string 617 _Self& insert(size_type __pos, const _Self& __s, function in class:basic_string 628 _Self& insert(size_type __pos, const _CharT* __s, size_type __n) { function in class:basic_string 638 _Self& insert(size_type __pos, const _CharT* __s) { function in class:basic_string 649 _Self& insert(size_type __pos, size_type __n, _CharT __c) { function in class:basic_string 654 insert(begin() + __pos, __n, __c); 658 iterator insert(iterator __p, _CharT __c) { function in class:basic_string 668 void insert(iterator __p, size_t __n, _CharT __c); 670 _STLP_PRIVATE: // Helper functions for insert 772 void insert(iterator __p, _InputIter __first, _InputIter __last) { function in class:basic_string 781 void insert(iterator __p, const _CharT* __f, const _CharT* __l) { function in class:basic_string [all...] |
_vector.h | 302 //As the vector container is a back insert oriented container it 355 insert(end(), __first, __last); 391 iterator insert(iterator __pos, const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)); 393 iterator insert(iterator __pos, const _Tp& __x); 398 iterator insert(iterator __pos) { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } function in class:vector 515 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { function in class:vector 526 __pos = insert(__pos, *__first); 537 void insert(iterator __pos, 559 void insert (iterator __pos, size_type __n, const _Tp& __x function in class:vector [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/ |
stl_bvector.h | 769 insert(iterator __position, const bool& __x = bool()) function in class:vector 782 insert(iterator __position, function in class:vector 790 insert(iterator __position, size_type __n, const bool& __x) function in class:vector 794 void insert(iterator __p, initializer_list<bool> __l) function in class:vector 795 { this->insert(__p, __l.begin(), __l.end()); } 824 insert(end(), __new_size - size(), __x); 921 insert(end(), __n - size(), __x); 942 insert(end(), __first, __last); 958 insert(end(), __mid, __last); 990 __pos = insert(__pos, *__first) [all...] |