Lines Matching refs:Length
42 for (size_t I = 0, E = min(Length, RHS.Length); I != E; ++I) { in compare_lower()
49 if (Length == RHS.Length) in compare_lower()
51 return Length < RHS.Length ? -1 : 1; in compare_lower()
56 for (size_t I = 0, E = min(Length, RHS.Length); I != E; ++I) { in compare_numeric()
63 bool ld = J < Length && ascii_isdigit(Data[J]); in compare_numeric()
64 bool rd = J < RHS.Length && ascii_isdigit(RHS.Data[J]); in compare_numeric()
80 if (Length == RHS.Length) in compare_numeric()
82 return Length < RHS.Length ? -1 : 1; in compare_numeric()
126 if (N > Length) in find()
130 if (Length < 16 || N > 255 || N == 0) { in find()
131 for (size_t e = Length - N + 1, i = min(From, e); i != e; ++i) in find()
137 if (From >= Length) in find()
146 unsigned Len = Length-From, Pos = From; in find()
166 if (N > Length) in rfind()
168 for (size_t i = Length - N + 1, e = 0; i != e;) { in rfind()
186 for (size_type i = min(From, Length), e = Length; i != e; ++i) in find_first_of()
195 for (size_type i = min(From, Length), e = Length; i != e; ++i) in find_first_not_of()
211 for (size_type i = min(From, Length), e = Length; i != e; ++i) in find_first_not_of()
227 for (size_type i = min(From, Length) - 1, e = -1; i != e; --i) in find_last_of()
236 for (size_type i = min(From, Length) - 1, e = -1; i != e; --i) in find_last_not_of()
252 for (size_type i = min(From, Length) - 1, e = -1; i != e; --i) in find_last_not_of()
288 if (N > Length) in count()
290 for (size_t i = 0, e = Length - N + 1; i != e; ++i) in count()