Home
last modified time | relevance | path

Searched refs:ignoreCase (Results 1 – 24 of 24) sorted by relevance

/external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
DignoreCase.js43 true, /xyz/i.ignoreCase);
47 false, /xyz/.ignoreCase);
71 true, (new RegExp('xyz','i')).ignoreCase);
75 false, (new RegExp('xyz')).ignoreCase);
Dcompile.js59 true, regularExpression.ignoreCase);
77 false, regularExpression.ignoreCase);
/external/webkit/JavaScriptCore/tests/mozilla/Getopt/
DMixed.pm77 $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/wrec/
DWRECParser.h50 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
DWREC.cpp46 …atterns_ptr, const char** error_ptr, RefPtr<ExecutablePool>& pool, bool ignoreCase, bool multiline) in compileRegExp() argument
53 Parser parser(pattern, ignoreCase, multiline); in compileRegExp()
DWRECGenerator.cpp269 if (m_parser.ignoreCase()) { in generatePatternCharacterPair()
285 if (m_parser.ignoreCase()) { in generatePatternCharacterPair()
322 if (m_parser.ignoreCase()) { in generatePatternCharacter()
340 if (m_parser.ignoreCase() && hasUpper) { in generatePatternCharacter()
438 if (m_parser.ignoreCase()) { in generateCharacterClassInverted()
DWRECGenerator.h58 …tterns_ptr, const char** error_ptr, RefPtr<ExecutablePool>& pool, bool ignoreCase = false, bool mu…
/external/webkit/JavaScriptCore/pcre/
Dpcre_compile.cpp2022 …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()
Dpcre_exec.cpp167 bool ignoreCase; member
250 if (md.ignoreCase) { in matchRef()
1189 … int othercase = md.ignoreCase ? jsc_pcre_ucp_othercase(stack.currentFrame->locals.fc) : -1; in match()
1284 if (md.ignoreCase) { in match()
1344 if (md.ignoreCase) { in match()
1970 matchBlock.ignoreCase = (re->options & IgnoreCaseOption); in jsRegExpExecute()
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
Dfunction-001.js54 re.ignoreCase );
Dconstructor-001.js54 re.ignoreCase );
Dproperties-001.js69 re.ignoreCase );
Dproperties-002.js116 re.ignoreCase );
/external/webkit/JavaScriptCore/runtime/
DRegExp.h43 bool ignoreCase() const { return m_flagBits & IgnoreCase; } in ignoreCase() function
DCommonIdentifiers.h46 macro(ignoreCase) \
DRegExpPrototype.cpp111 if (asRegExpObject(thisValue)->get(exec, exec->propertyNames().ignoreCase).toBoolean(exec)) in regExpProtoFuncToString()
DRegExpObject.cpp81 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->ignoreCase()); in regExpObjectIgnoreCase()
/external/tinyxml/
Dtinyxmlparser.cpp515 bool ignoreCase, in StringEqual() argument
528 if ( ignoreCase ) in StringEqual()
Dtinyxml.h272 bool ignoreCase, // whether to ignore case in the end tag
327 bool ignoreCase,
/external/icu4c/i18n/
Dzstrfmt.h84 TextTrieMap(UBool ignoreCase);
Dzstrfmt.cpp207 TextTrieMap::TextTrieMap(UBool ignoreCase) in TextTrieMap() argument
208 : fIgnoreCase(ignoreCase), fNodes(NULL), fNodesCapacity(0), fNodesCount(0) { in TextTrieMap()
/external/webkit/JavaScriptCore/bytecode/
DCodeBlock.cpp92 if (regExp->ignoreCase()) in regexpToSourceString()
/external/webkit/JavaScriptCore/
DChangeLog8014 (JSC::WREC::Parser::ignoreCase):
8200 (JSC::WREC::Parser::ignoreCase):
8963 (JSC::WREC::Parser::ignoreCase):
DChangeLog-2007-10-1422593 "global", "ignoreCase", "multiline", and "source".