Home
last modified time | relevance | path

Searched refs:subjectLength (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/loader/
DTextResourceDecoder.cpp45 static int find(const char* subject, size_t subjectLength, const char* target) in find() argument
48 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() argument
67 if (targetLength > subjectLength) in findIgnoringCase()
73 for (size_t i = 0; i <= subjectLength - targetLength; ++i) { in findIgnoringCase()
/external/webkit/JavaScriptCore/pcre/
Dpcre.h63 const UChar* subject, int subjectLength, int startOffset,