Home | History | Annotate | Download | only in unicode

Lines Matching refs:source

205    * @param source    the input string to be normalized.
212 static void U_EXPORT2 normalize(const UnicodeString& source,
225 * @param source the string to be composed.
234 static void U_EXPORT2 compose(const UnicodeString& source,
247 * @param source the string to be decomposed.
256 static void U_EXPORT2 decompose(const UnicodeString& source,
273 * @param source string for determining if it is in a normalized format
282 quickCheck(const UnicodeString &source, UNormalizationMode mode, UErrorCode &status);
288 * @param source string for determining if it is in a normalized format
298 quickCheck(const UnicodeString &source, UNormalizationMode mode, int32_t options, UErrorCode &status);
302 * This is semantically equivalent to source.equals(normalize(source, mode)) .
314 * @return Boolean value indicating whether the source string is in the
332 * @return Boolean value indicating whether the source string is in the
354 * @param left Left source string.
355 * @param right Right source string.
399 * @param s1 First source string.
400 * @param s2 Second source string.
732 // For documentation, see the source code
752 // of the source in [currentIndex..nextIndex[ .
769 Normalizer::quickCheck(const UnicodeString& source,
772 return quickCheck(source, mode, 0, status);
776 Normalizer::isNormalized(const UnicodeString& source,
779 return isNormalized(source, mode, 0, status);