/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/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/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 | 46 …atterns_ptr, const char** error_ptr, RefPtr<ExecutablePool>& pool, bool ignoreCase, bool multiline) in compileRegExp() argument 53 Parser parser(pattern, ignoreCase, multiline); in compileRegExp()
|
D | WRECGenerator.cpp | 269 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()
|
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() 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/ |
D | function-001.js | 54 re.ignoreCase );
|
D | constructor-001.js | 54 re.ignoreCase );
|
D | properties-001.js | 69 re.ignoreCase );
|
D | properties-002.js | 116 re.ignoreCase );
|
/external/webkit/JavaScriptCore/runtime/ |
D | RegExp.h | 43 bool ignoreCase() const { return m_flagBits & IgnoreCase; } in ignoreCase() function
|
D | CommonIdentifiers.h | 46 macro(ignoreCase) \
|
D | RegExpPrototype.cpp | 111 if (asRegExpObject(thisValue)->get(exec, exec->propertyNames().ignoreCase).toBoolean(exec)) in regExpProtoFuncToString()
|
D | RegExpObject.cpp | 81 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->ignoreCase()); in regExpObjectIgnoreCase()
|
/external/tinyxml/ |
D | tinyxmlparser.cpp | 515 bool ignoreCase, in StringEqual() argument 528 if ( ignoreCase ) in StringEqual()
|
D | tinyxml.h | 272 bool ignoreCase, // whether to ignore case in the end tag 327 bool ignoreCase,
|
/external/icu4c/i18n/ |
D | zstrfmt.h | 84 TextTrieMap(UBool ignoreCase);
|
D | zstrfmt.cpp | 207 TextTrieMap::TextTrieMap(UBool ignoreCase) in TextTrieMap() argument 208 : fIgnoreCase(ignoreCase), fNodes(NULL), fNodesCapacity(0), fNodesCount(0) { in TextTrieMap()
|
/external/webkit/JavaScriptCore/bytecode/ |
D | CodeBlock.cpp | 92 if (regExp->ignoreCase()) in regexpToSourceString()
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog | 8014 (JSC::WREC::Parser::ignoreCase): 8200 (JSC::WREC::Parser::ignoreCase): 8963 (JSC::WREC::Parser::ignoreCase):
|
D | ChangeLog-2007-10-14 | 22593 "global", "ignoreCase", "multiline", and "source".
|