Lines Matching defs:at

10 // Free Software Foundation; either version 2, or (at your option)
62 * @c push_back, @c at, and array access are supported.
91 * object at the front.
460 * NB: @a s must have at least @a n characters, '\0' has no special
697 * see at().)
714 * see at().) Unshares the string.
738 at(size_type __n) const
741 __throw_out_of_range(__N("basic_string::at"));
757 at(size_type __n)
760 __throw_out_of_range(__N("basic_string::at"));
812 * This function appends @a n characters from @a str starting at @a pos
895 * of @a n characters at @a pos. If @a n is is larger than the number
961 * @param p Iterator referencing location in string to insert at.
966 * Inserts @a n copies of character @a c starting at the position
977 * @param p Iterator referencing location in string to insert at.
993 * @param pos1 Iterator referencing location in string to insert at.
998 * Inserts value of @a str starting at @a pos1. If adding characters
1008 * @param pos1 Iterator referencing location in string to insert at.
1017 * Starting at @a pos1, insert @a n character of @a str beginning with
1033 * @param pos Iterator referencing location in string to insert at.
1041 * Inserts the first @a n characters of @a s starting at @a pos. If
1052 * @param pos Iterator referencing location in string to insert at.
1059 * Inserts the first @a n characters of @a s starting at @a pos. If
1074 * @param pos Index in string to insert at.
1082 * Inserts @a n copies of character @a c starting at index @a pos. If
1095 * @param p Iterator referencing position in string to insert at.
1100 * Inserts character @a c at position referenced by @a p. If adding
1123 * Removes @a n characters from this string starting at @a pos. The
1142 * Removes the character at @a position from this string. The value
1508 * Copies up to @a n characters starting at @a pos into the C string @a
1641 * @param pos Index of character to start search at (default end).
1916 * at @a pos. If the string is too short, use the remainder of the
1959 * at @a pos. Returns an integer < 0 if the substring is ordered
1981 * at @a pos1. Form the substring of @a str from the @a n2 characters
1982 * starting at @a pos2. Returns an integer < 0 if this substring is
2023 * at @a pos. Returns an integer < 0 if the substring is ordered
2045 * at @a pos1. Form a string from the first @a n2 characters of @a s.
2055 * NB: s must have at least n2 characters, '\0' has no special