• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/

Lines Matching defs:insert

713        *  @param p  Iterator referencing location in string to insert at.
714 * @param n Number of characters to insert
715 * @param c The character to insert.
724 insert(iterator __p, size_type __n, _CharT __c)
729 * @param p Iterator referencing location in string to insert at.
740 insert(iterator __p, _InputIterator __beg, _InputIterator __end)
745 * @param pos1 Iterator referencing location in string to insert at.
746 * @param str The string to insert.
755 insert(size_type __pos1, const __versa_string& __str)
761 * @param pos1 Iterator referencing location in string to insert at.
762 * @param str The string to insert.
763 * @param pos2 Start of characters in str to insert.
764 * @param n Number of characters to insert.
770 * Starting at @a pos1, insert @a n character of @a str beginning with
778 insert(size_type __pos1, const __versa_string& __str,
781 + __str._M_check(__pos2, "__versa_string::insert"),
786 * @param pos Iterator referencing location in string to insert at.
787 * @param s The C string to insert.
788 * @param n The number of characters to insert.
801 insert(size_type __pos, const _CharT* __s, size_type __n)
806 * @param pos Iterator referencing location in string to insert at.
807 * @param s The C string to insert.
820 insert(size_type __pos, const _CharT* __s)
829 * @param pos Index in string to insert at.
830 * @param n Number of characters to insert
831 * @param c The character to insert.
844 insert(size_type __pos, size_type __n, _CharT __c)
845 { return _M_replace_aux(_M_check(__pos, "__versa_string::insert"),
850 * @param p Iterator referencing position in string to insert at.
851 * @param c The character to insert.
861 insert(iterator __p, _CharT __c)
935 * @param str String to insert.
955 * @param str String to insert.
983 * @param s C string to insert.
1009 * @param s C string to insert.
1031 * @param n2 Number of characters to insert.
1032 * @param c Character to insert.
1052 * @param str String value to insert.
1069 * @param s C string value to insert.
1070 * @param n Number of characters from s to insert.
1091 * @param s C string value to insert.
1111 * @param n Number of characters to insert.
1112 * @param c Character to insert.
1133 * @param k1 Iterator referencing start of range to insert.
1134 * @param k2 Iterator referencing end of range to insert.