Lines Matching refs:character

176 	\brief Count the number of bytes starting from a specified character
185 \param fromCharOffset The index of the character (not the byte!) from
278 \brief Re-initialize the BString to a character.
408 \brief Re-initialize the object to a string composed of a character you
411 This method lets you specify the length of a string and what character
414 \param c The character you want to initialize the BString.
660 \brief Append the given character to the end of the BString.
662 \param c The character to append.
728 \brief Append the given character repeatedly to the end of the BString.
730 \param c The character to append.
731 \param count The number of times this character should be appended.
842 \brief Prepend the given character \a count times to the beginning of the
845 \param c The character to prepend.
846 \param count The number of times this character should be prepended.
1014 \brief Inserts the given character repeatedly at the given position
1017 \param c The character to insert.
1018 \param count The number of times to insert the character.
1818 \brief Find the first occurrence of the given character.
1820 \param c The character to search for.
1822 \return The offset (zero-based) into the data where the given character
1823 was found, or \c B_ERROR if we could not find the character.
1831 \brief Find the first occurrence of the given character, starting from the
1834 \param c The character to search for.
1837 \return The offset (zero-based) into the data where the given character
1838 was found, or \c B_ERROR if we could not find the character.
1947 \brief Find the last occurrence of the given character.
1949 \param c The character to search for.
1951 was found, or \c B_ERROR if we could not find the character.
1959 \brief Find the last occurrence of the given character,
1962 \param c The character to search for.
1965 \return The offset (zero-based) into the data where the given character
1966 was found, or \c B_ERROR Could not find the character.
2253 \brief Replace the first occurrence of a character with another character.
2255 \param replaceThis The character to replace.
2256 \param withThis The character to put in its place.
2268 \brief Replace the last occurrence of a character with another character.
2270 \param replaceThis The character to replace.
2271 \param withThis The character to put in its place
2284 \brief Replace all occurrences of a character with another character.
2286 \param replaceThis The character to replace.
2287 \param withThis The character to put in its place
2288 \param fromOffset The offset in bytes to start looking for the character.
2301 \brief Replace a number of occurrences of a character with another
2302 character.
2304 \param replaceThis The character to replace.
2305 \param withThis The character to put in its place
2308 \param fromOffset The offset in bytes to start looking for the character
2427 \brief Replace the first occurrence of a character with another
2428 character case-insensitively.
2441 \brief Replace the last occurrence of a character with another
2442 character case-insensitively.
2456 \brief Replace all occurrences of a character with another character
2472 \brief Replace a number of occurrences of a character with another
2473 character case-insensitively.
2553 character.
2556 \param with The character to replace the occurrences with.
2604 \brief Returns the character in the string at the given offset.
2620 \brief Returns the character in the string at the given offset.
2636 \param charIndex The index (zero-based) of the UTF-8 character to get.
2637 \param bytes An int32 pointer to hold the UTF-8 character.
2639 \return A reference to the specified UTF-8 character, if out of bounds
2653 \param charIndex The index (zero-based) of the UTF-8 character to get.
2654 \param buffer Set to the position in the string where the character is
2656 \param bytes An int32 pointer to hold the UTF-8 character.
2713 \brief Set a byte at position \a pos to character \a to.
2757 \brief Convert the first character to uppercase, and the rest to lowercase.
2767 \brief Convert the first character of every word to uppercase, and the rest
2770 Converts the first character of every "word" (series of alphabetical
2788 escaping, where you place a character before the character that is
2804 character.
2808 \param escapeWith The character to escape with.
2825 \param escapeWith The character to escape with.
2838 \brief Remove the character to escape with from a given string.
2844 \param escapeChar The character that was used to escape with.
2856 \brief Remove the character to escape with from this string.
2858 \param escapeChar The character that was used to escape with.
2905 \param c The character to append.