Lines Matching refs:s1
196 \fn int BCollator::Compare(const char* s1, const char* s2)
203 \param s1 The first string to compare.
209 \retval <0 if s1 is less than s2.
210 \retval >0 if s1 is greater than s2.
219 \fn bool BCollator::Equal(const char* s1, const char* s2)
230 \param s1 The first string to compare.
240 \fn bool BCollator::Greater(const char* s1, const char* s2)
244 \note !Greater(s1, s2) is the same as GreaterOrEqual(s2, s1). This means
245 there is no need for Lesser(s1, s2) and LesserOrEqual(s1, s2) methods.
247 \param s1 The first string to compare.
250 \returns \c true if s1 is greater than, but not equal to, s2.
257 \fn bool BCollator::GreaterOrEqual(const char* s1, const char* s2)
261 \note !GreaterOrEqual(s1, s2) is the same as Greater(s2, s1).
263 \param s1 The first string to compare.
266 \returns \c true if s1 is greater or equal than s2.