Home | History | Annotate | Download | only in unicode

Lines Matching refs:s1

407  * @param s1 A string to compare.
409 * @return 0 if <code>s1</code> and <code>s2</code> are bitwise equal; a negative
410 * value if <code>s1</code> is bitwise less than <code>s2,</code>; a positive
411 * value if <code>s1
415 u_strcmp(const UChar *s1,
422 * @param s1 A string to compare.
430 u_strcmpCodePointOrder(const UChar *s1, const UChar *s2);
446 * @param s1 First source string.
460 u_strCompare(const UChar *s1, int32_t length1,
500 * u_strCompare(u_strFoldCase(s1, options),
514 * @param s1 First source string.
538 u_strCaseCompare(const UChar *s1, int32_t length1,
550 * @return 0 if <code>s1</code> and <code>s2</code> are bitwise equal; a negative
551 * value if <code>s1</code> is bitwise less than <code>s2</code>; a positive
552 * value if <code>s1</code> is bitwise greater than <code>s2</code>.
565 * @param s1 A string to compare.
574 u_strncmpCodePointOrder(const UChar *s1, const UChar *s2, int32_t n);
578 * This is equivalent to u_strcmp(u_strFoldCase(s1, options), u_strFoldCase(s2, options)).
580 * @param s1 A string to compare.
596 u_strcasecmp(const UChar *s1, const UChar *s2, uint32_t options);
600 * This is equivalent to u_strcmp(u_strFoldCase(s1, at most n, options),
603 * @param s1 A string to compare.
620 u_strncasecmp(const UChar *s1, const UChar *s2, int32_t n, uint32_t options);
624 * This is equivalent to u_strcmp(u_strFoldCase(s1, n, options),
627 * @param s1 A string to compare.
644 u_memcasecmp(const UChar *s1, const UChar *s2, int32_t length, uint32_t options);
789 * @param s1 A string to compare.
798 u_memcmpCodePointOrder(const UChar *s1, const UChar *s2, int32_t count);