Home
last modified time | relevance | path

Searched refs:REQ_IGNORE_CASE (Results 1 – 4 of 4) sorted by relevance

/external/webkit/JavaScriptCore/pcre/
Dpcre_compile.cpp610 int reqCaseOpt = (options & IgnoreCaseOption) ? REQ_IGNORE_CASE : 0; in compileBranch()
2666 | ((re->options & IgnoreCaseOption) ? REQ_IGNORE_CASE : 0); in jsRegExpCompile()
2671 … re->firstByte = ((firstByte & REQ_IGNORE_CASE) && flipCase(ch) == ch) ? ch : firstByte; in jsRegExpCompile()
2687 …re->reqByte = ((reqByte & REQ_IGNORE_CASE) && flipCase(ch) == ch) ? (reqByte & ~REQ_IGNORE_CASE) :… in jsRegExpCompile()
Dpcre_internal.h220 #define REQ_IGNORE_CASE 0x0100 /* indicates should ignore case */ macro
Dpcre_exec.cpp2026 if ((firstByteIsCaseless = (re->firstByte & REQ_IGNORE_CASE))) in jsRegExpExecute()
2038 reqByteIsCaseless = (re->reqByte & REQ_IGNORE_CASE); in jsRegExpExecute()
/external/webkit/JavaScriptCore/
DChangeLog-2008-08-1023863 the find_firstassertedchar function. Also put the REQ_IGNORE_CASE code here instead of