/external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
D | ignoreCase.js | 43 true, /xyz/i.ignoreCase); 47 false, /xyz/.ignoreCase); 71 true, (new RegExp('xyz','i')).ignoreCase); 75 false, (new RegExp('xyz')).ignoreCase);
|
D | compile.js | 59 true, regularExpression.ignoreCase); 77 false, regularExpression.ignoreCase);
|
/external/webkit/V8Binding/v8/test/mjsunit/regress/ |
D | regress-87.js | 28 function testFlags(flagstring, global, ignoreCase, multiline) { argument 32 assertEquals(ignoreCase, re.ignoreCase, text + ".ignoreCase");
|
D | regress-219.js | 35 function assertFlags(re, global, multiline, ignoreCase) { argument 39 (ignoreCase ? assertTrue : assertFalse)(re.ignoreCase, name + "i");
|
/external/webkit/V8Binding/v8/src/ |
D | regexp-delay.js | 42 + (pattern.ignoreCase ? 'i' : '') 51 var ignoreCase = false; 62 ignoreCase = true; 83 %SetProperty(object, 'ignoreCase', ignoreCase, 95 %IgnoreAttributesAndSetProperty(object, 'ignoreCase', ignoreCase); 250 if (this.ignoreCase)
|
/external/webkit/JavaScriptCore/tests/mozilla/Getopt/ |
D | Mixed.pm | 77 $ignoreCase = 1; # Ignore case by default 86 $ignoreCase = 0 if $group =~ /[A-Z]/; 308 $opt =~ tr/A-Z/a-z/ if $ignoreCase; 324 $opt =~ tr/A-Z/a-z/ if $ignoreCase;
|
/external/webkit/JavaScriptCore/runtime/ |
D | RegExp.cpp | 107 …ata, m_regExpJITCode, m_pattern, m_numSubpatterns, m_constructionError, ignoreCase(), multiline()); in compile() 110 …rr::byteCompileRegex(m_pattern, m_numSubpatterns, m_constructionError, ignoreCase(), multiline())); in compile() 172 …, m_pattern, &m_numSubpatterns, &m_constructionError, m_executablePool, ignoreCase(), multiline()); in match() 180 …JSRegExpIgnoreCaseOption ignoreCaseOption = ignoreCase() ? JSRegExpIgnoreCase : JSRegExpDoNotIgnor… in match()
|
D | RegExp.h | 48 bool ignoreCase() const { return m_flagBits & IgnoreCase; } in ignoreCase() function
|
D | CommonIdentifiers.h | 47 macro(ignoreCase) \
|
D | RegExpObject.cpp | 82 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->ignoreCase()); in regExpObjectIgnoreCase()
|
D | RegExpPrototype.cpp | 112 if (asRegExpObject(thisValue)->get(exec, exec->propertyNames().ignoreCase).toBoolean(exec)) in regExpProtoFuncToString()
|
/external/webkit/JavaScriptCore/wrec/ |
D | WRECParser.h | 50 Parser(const UString& pattern, bool ignoreCase, bool multiline) in Parser() argument 54 , m_ignoreCase(ignoreCase) in Parser() 62 bool ignoreCase() const { return m_ignoreCase; } in ignoreCase() function
|
D | WREC.cpp | 43 …atterns_ptr, const char** error_ptr, RefPtr<ExecutablePool>& pool, bool ignoreCase, bool multiline) in compileRegExp() argument 50 Parser parser(pattern, ignoreCase, multiline); in compileRegExp()
|
D | WRECGenerator.cpp | 257 if (m_parser.ignoreCase()) { in generatePatternCharacterPair() 273 if (m_parser.ignoreCase()) { in generatePatternCharacterPair() 310 if (m_parser.ignoreCase()) { in generatePatternCharacter() 328 if (m_parser.ignoreCase() && hasUpper) { in generatePatternCharacter() 426 if (m_parser.ignoreCase()) { in generateCharacterClassInverted()
|
D | WRECGenerator.h | 58 …tterns_ptr, const char** error_ptr, RefPtr<ExecutablePool>& pool, bool ignoreCase = false, bool mu…
|
/external/webkit/JavaScriptCore/pcre/ |
D | pcre_compile.cpp | 2022 …CompiledPatternLength(const UChar* pattern, int patternLength, JSRegExpIgnoreCaseOption ignoreCase, in calculateCompiledPatternLength() argument 2242 if ((d > 255 || (ignoreCase && d > 127))) { in calculateCompiledPatternLength() 2256 if (ignoreCase) { in calculateCompiledPatternLength() 2295 if ((c > 255 || (ignoreCase && c > 127))) { in calculateCompiledPatternLength() 2303 length += (ignoreCase ? 2 : 1) * (1 + encodeUTF8(c, buffer)); in calculateCompiledPatternLength() 2565 JSRegExpIgnoreCaseOption ignoreCase, JSRegExpMultilineOption multiline, in jsRegExpCompile() argument 2578 calculateCompiledPatternLength(pattern, patternLength, ignoreCase, cd, errorcode); in jsRegExpCompile() 2580 int length = calculateCompiledPatternLength(pattern, patternLength, ignoreCase, cd, errorcode); in jsRegExpCompile() 2597 …re->options = (ignoreCase ? IgnoreCaseOption : 0) | (multiline ? MatchAcrossMultipleLinesOption : … in jsRegExpCompile()
|
D | pcre_exec.cpp | 167 bool ignoreCase; member 250 if (md.ignoreCase) { in matchRef() 1190 … othercase = md.ignoreCase ? jsc_pcre_ucp_othercase(stack.currentFrame->locals.fc) : -1; in match() 1285 if (md.ignoreCase) { in match() 1345 if (md.ignoreCase) { in match() 1971 matchBlock.ignoreCase = (re->options & IgnoreCaseOption); in jsRegExpExecute()
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/ |
D | constructor-001.js | 54 re.ignoreCase );
|
D | function-001.js | 54 re.ignoreCase );
|
D | properties-001.js | 69 re.ignoreCase );
|
D | properties-002.js | 116 re.ignoreCase );
|
/external/webkit/V8Binding/v8/test/mjsunit/ |
D | regexp-string-methods.js | 43 assertTrue(f2.ignoreCase);
|
/external/webkit/JavaScriptCore/yarr/ |
D | RegexPattern.h | 246 RegexPattern(bool ignoreCase, bool multiline) in RegexPattern() 247 : m_ignoreCase(ignoreCase) in RegexPattern()
|
D | RegexJIT.h | 84 …t UString& pattern, unsigned& numSubpatterns, const char*& error, bool ignoreCase = false, bool mu…
|
D | RegexInterpreter.h | 330 …t UString& pattern, unsigned& numSubpatterns, const char*& error, bool ignoreCase = false, bool mu…
|