Searched refs:REQ_IGNORE_CASE (Results 1 – 4 of 4) sorted by relevance
610 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()
220 #define REQ_IGNORE_CASE 0x0100 /* indicates should ignore case */ macro
2026 if ((firstByteIsCaseless = (re->firstByte & REQ_IGNORE_CASE))) in jsRegExpExecute()2038 reqByteIsCaseless = (re->reqByte & REQ_IGNORE_CASE); in jsRegExpExecute()
23863 the find_firstassertedchar function. Also put the REQ_IGNORE_CASE code here instead of