Searched refs:subjectLength (Results 1 – 2 of 2) sorted by relevance
45 static int find(const char* subject, size_t subjectLength, const char* target) in find() argument48 if (targetLength > subjectLength) in find()50 for (size_t i = 0; i <= subjectLength - targetLength; ++i) { in find()64 static int findIgnoringCase(const char* subject, size_t subjectLength, const char* target) in findIgnoringCase() argument67 if (targetLength > subjectLength) in findIgnoringCase()73 for (size_t i = 0; i <= subjectLength - targetLength; ++i) { in findIgnoringCase()
63 const UChar* subject, int subjectLength, int startOffset,