Searched refs:ignoreCase (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/RegExp/
H A Dconstructor-001.js21 * - ignoreCase property is set to false
52 "(new RegExp()).ignoreCase",
54 re.ignoreCase );
H A Dfunction-001.js21 * - ignoreCase property is set to false
52 "(new RegExp()).ignoreCase",
54 re.ignoreCase );
H A Dproperties-001.js74 AddTestCase( re + ".ignoreCase",
76 re.ignoreCase );
H A Dproperties-002.js114 AddTestCase( re + ".ignoreCase",
116 re.ignoreCase );
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A DignoreCase.js23 Filename: ignoreCase.js
24 Description: 'Tests RegExp attribute ignoreCase'
33 var TITLE = 'RegExp: ignoreCase';
35 writeHeaderToLog('Executing script: ignoreCase.js');
41 // /xyz/i.ignoreCase
42 testcases[count++] = new TestCase ( SECTION, "/xyz/i.ignoreCase",
43 true, /xyz/i.ignoreCase);
45 // /xyz/.ignoreCase
46 testcases[count++] = new TestCase ( SECTION, "/xyz/.ignoreCase",
47 false, /xyz/.ignoreCase);
[all...]
H A Dcompile.js58 "ignoreCase of (compile '[0-9]{3}x[0-9]{4}','i')",
59 true, regularExpression.ignoreCase);
76 "ignoreCase of (compile '[0-9]{3}X[0-9]{3}','g')",
77 false, regularExpression.ignoreCase);
/macosx-10.10.1/OpenSSL098-52/src/MacOS/GetHTTPS.src/
H A DCPStringUtils.hpp19 int ComparePStrs(const unsigned char *theFirstPStr,const unsigned char *theSecondPStr,const Boolean ignoreCase = true);
20 int CompareCStrs(const char *theFirstCStr,const char *theSecondCStr,const Boolean ignoreCase = true);
21 int CompareCStrToPStr(const char *theCStr,const unsigned char *thePStr,const Boolean ignoreCase = true);
23 Boolean CStrsAreEqual(const char *theFirstCStr,const char *theSecondCStr,const Boolean ignoreCase = true);
24 Boolean PStrsAreEqual(const unsigned char *theFirstCStr,const unsigned char *theSecondCStr,const Boolean ignoreCase = true);
H A DCPStringUtils.cpp426 int CompareCStrs(const char *theFirstCStr,const char *theSecondCStr,const Boolean ignoreCase) argument
442 if (ignoreCase == true)
502 Boolean CStrsAreEqual(const char *theFirstCStr,const char *theSecondCStr,const Boolean ignoreCase) argument
504 if (CompareCStrs(theFirstCStr,theSecondCStr,ignoreCase) == 0)
516 Boolean PStrsAreEqual(const unsigned char *theFirstPStr,const unsigned char *theSecondPStr,const Boolean ignoreCase) argument
518 if (ComparePStrs(theFirstPStr,theSecondPStr,ignoreCase) == 0)
531 int ComparePStrs(const unsigned char *theFirstPStr,const unsigned char *theSecondPStr,const Boolean ignoreCase) argument
547 if (ignoreCase == true)
604 int CompareCStrToPStr(const char *theCStr,const unsigned char *thePStr,const Boolean ignoreCase) argument
616 returnValue = CompareCStrs(theCStr,tempString,ignoreCase);
[all...]
/macosx-10.10.1/apache-793/httpd/docs/manual/style/scripts/
H A Dprettify.js254 var ignoreCase = false;
257 if (regex.ignoreCase) {
258 ignoreCase = true;
262 ignoreCase = false;
451 if (regex.ignoreCase && needToFoldCase) {
480 return new RegExp(rewritten.join('|'), ignoreCase ? 'gi' : 'g');
H A Dprettify.min.js3 PYTHON_KEYWORDS,RUBY_KEYWORDS,SH_KEYWORDS,CONFIG_KEYWORDS,PHP_KEYWORDS];var C_TYPES=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float|char|void|const|static|struct)\d*(_t)?\b)|[a-z_]+_rec|cmd_parms\b/;var PR_STRING='str';var PR_KEYWORD='kwd';var PR_COMMENT='com';var PR_TYPE='typ';var PR_LITERAL='lit';var PR_PUNCTUATION='pun';var PR_PLAIN='pln';var PR_TAG='tag';var PR_DECLARATION='dec';var PR_SOURCE='src';var PR_ATTRIB_NAME='atn';var PR_ATTRIB_VALUE='atv';var PR_NOCODE='nocode';var REGEXP_PRECEDER_PATTERN='(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*';function combinePrefixPatterns(regexs){var capturedGroupIndex=0;var needToFoldCase=false;var ignoreCase=false;for(var i=0,n=regexs.length;i<n;++i){var regex=regexs[i];if(regex.ignoreCase){ignoreCase=true;}else if(/[a-z]/i.test(regex.source.replace(/\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi,''))){needToFoldCase=true;ignoreCase=false;break;}}
35 if(regex.ignoreCase&&needToFoldCase){for(var i=0;i<n;++i){var p=parts[i];var ch0=p.charAt(0);if(p.length>=2&&ch0==='['){parts[i]=caseFoldCharset(p);}else if(ch0!=='\\'){parts[i]=p.replace(/[a-zA-Z]/g,function(ch){var cc=ch.charCodeAt(0);return'['+String.fromCharCode(cc&~32,cc|32)+']';});}}}
39 return new RegExp(rewritten.join('|'),ignoreCase?'gi':'g');}
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DRegExp.h55 bool ignoreCase() const { return m_flags & FlagIgnoreCase; } function in class:JSC::RegExp
H A DRegExp.cpp125 if (regExp->ignoreCase())
243 Yarr::YarrPattern pattern(m_patternString, ignoreCase(), multiline(), &m_constructionError);
273 Yarr::YarrPattern pattern(m_patternString, ignoreCase(), multiline(), &m_constructionError);
396 Yarr::YarrPattern pattern(m_patternString, ignoreCase(), multiline(), &m_constructionError);
H A DRegExpPrototype.cpp145 if (thisObject->get(exec, exec->propertyNames().ignoreCase).toBoolean(exec))
H A DCommonIdentifiers.h115 macro(ignoreCase) \
H A DRegExpObject.cpp60 ignoreCase regExpObjectIgnoreCase DontDelete|ReadOnly|DontEnum
165 return JSValue::encode(jsBoolean(asRegExpObject(slotBase)->regExp()->ignoreCase()));
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dtznames_impl.h130 TextTrieMap(UBool ignoreCase, UObjectDeleter *valeDeleter);
H A Dtznames_impl.cpp115 TextTrieMap::TextTrieMap(UBool ignoreCase, UObjectDeleter *valueDeleter) argument
116 : fIgnoreCase(ignoreCase), fNodes(NULL), fNodesCapacity(0), fNodesCount(0),
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Doc/sphinx_build/html/_static/
H A Dunderscore.js19 if(a.isEqual)return a.isEqual(c);if(b.isDate(a)&&b.isDate(c))return a.getTime()===c.getTime();if(b.isNaN(a)&&b.isNaN(c))return true;if(b.isRegExp(a)&&b.isRegExp(c))return a.source===c.source&&a.global===c.global&&a.ignoreCase===c.ignoreCase&&a.multiline===c.multiline;if(d!=="object")return false;if(a.length&&a.length!==c.length)return false;d=b.keys(a);var e=b.keys(c);if(d.length!=e.length)return false;for(var f in a)if(!b.isEqual(a[f],c[f]))return false;return true};b.isEmpty=function(a){return b.keys(a).length==
21 a.test&&a.exec&&(a.ignoreCase||a.ignoreCase===false))};b.isNaN=function(a){return b.isNumber(a)&&isNaN(a)};b.isNull=function(a){return a===null};b.isUndefined=function(a){return typeof a=="undefined"};b.noConflict=function(){j._=n;return this};b.identity=function(a){return a};b.breakLoop=function(){throw m;};var s=0;b.uniqueId=function(a){var c=s++;return a?a+c:c};b.template=function(a,c){a=new Function("obj","var p=[],print=function(){p.push.apply(p,arguments);};with(obj){p.push('"+a.replace(/[\r\t\n]/g,
/macosx-10.10.1/JavaScriptCore-7600.1.17/yarr/
H A DYarrPattern.h306 JS_EXPORT_PRIVATE YarrPattern(const String& pattern, bool ignoreCase, bool multiline, const char** error);
H A DYarrPattern.cpp864 YarrPattern::YarrPattern(const String& pattern, bool ignoreCase, bool multiline, const char** error) argument
865 : m_ignoreCase(ignoreCase)
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/Getopt/
H A 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;
621 =item $ignoreCase
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dsearchcursor.js27 if (!query.global) query = new RegExp(query.source, query.ignoreCase ? "ig" : "g");
/macosx-10.10.1/WTF-7600.1.24/wtf/text/
H A DWTFString.h491 inline bool equalPossiblyIgnoringCase(const String& a, const String& b, bool ignoreCase) argument
493 return ignoreCase ? equalIgnoringCase(a, b) : (a == b);
/macosx-10.10.1/bash-94.1.2/bash-3.2/support/
H A Dtexi2html1566 push(@_, 0) if ($#_ == 2); # Default for $ignoreCase is 0.
1570 $helpThenExit, $versionThenExit, $ignoreCase) = @_;
1574 $ignoreCase = 0 unless (defined($ignoreCase));
1579 $Getopt::Long::ignorecase = $ignoreCase;
/macosx-10.10.1/apache-793/httpd/modules/lua/
H A Dlua_request.c1606 * @param ignoreCase Whether to ignore case when matching
1614 int ignoreCase = 0; local
1620 ignoreCase = lua_toboolean(L, 3);
1621 if (!ignoreCase)

Completed in 196 milliseconds

12