/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/ |
constructor-001.js | 21 * - ignoreCase property is set to false 52 "(new RegExp()).ignoreCase", 54 re.ignoreCase );
|
function-001.js | 21 * - ignoreCase property is set to false 52 "(new RegExp()).ignoreCase", 54 re.ignoreCase );
|
properties-001.js | 74 AddTestCase( re + ".ignoreCase", 76 re.ignoreCase );
|
properties-002.js | 114 AddTestCase( re + ".ignoreCase", 116 re.ignoreCase );
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
ignoreCase.js | 23 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...] |
compile.js | 58 "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);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
AutoCorrection.java | 53 CharSequence word, boolean ignoreCase) { 70 || (ignoreCase && dictionary.isValidWord(lowerCasedWord))) { 97 final CharSequence word, final boolean ignoreCase) { 105 return !isValidWord(dictionaries, word, ignoreCase);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
CommonIdentifiers.h | 49 macro(ignoreCase) \
|
RegExp.h | 44 bool ignoreCase() const { return m_flags & FlagIgnoreCase; }
|
RegExpObject.cpp | 57 ignoreCase regExpObjectIgnoreCase DontDelete|ReadOnly|DontEnum 99 return jsBoolean(asRegExpObject(slotBase)->regExp()->ignoreCase());
|
RegExpPrototype.cpp | 134 if (thisObject->get(exec, exec->propertyNames().ignoreCase).toBoolean(exec))
|
RegExp.cpp | 105 Yarr::YarrPattern pattern(m_patternString, ignoreCase(), multiline(), &m_constructionError);
|
/external/v8/test/mjsunit/regress/ |
regress-219.js | 39 function assertFlags(re, global, multiline, ignoreCase) { 43 (ignoreCase ? assertTrue : assertFalse)(re.ignoreCase, name + "i");
|
regress-1217.js | 36 assertEquals(false, proto.ignoreCase);
|
/external/v8/src/ |
regexp.js | 42 + (pattern.ignoreCase ? 'i' : '') 51 var ignoreCase = false; 63 if (ignoreCase) { 66 ignoreCase = true; 79 %RegExpInitializeObject(object, pattern, global, ignoreCase, multiline); 273 (regexp.ignoreCase ? regexp.multiline ? "im" : "i" 287 if (this.ignoreCase) result += 'i';
|
/external/icu4c/i18n/ |
tznames_impl.h | 130 TextTrieMap(UBool ignoreCase, UObjectDeleter *valeDeleter);
|
/external/v8/test/mjsunit/ |
regexp-string-methods.js | 43 assertTrue(f2.ignoreCase);
|
regexp.js | 435 assertFalse(re.ignoreCase); 442 assertTrue(re.ignoreCase); 455 assertTrue(re.ignoreCase); 473 assertFalse(re.ignoreCase); 620 desc = Object.getOwnPropertyDescriptor(re, "ignoreCase");
|
mirror-regexp.js | 37 'ignoreCase': all_attributes,
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/Getopt/ |
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; 621 =item $ignoreCase
|
/external/webkit/Source/JavaScriptCore/yarr/ |
YarrPattern.h | 316 YarrPattern(const UString& pattern, bool ignoreCase, bool multiline, const char** error);
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/ |
AvdManager.java | 370 boolean ignoreCase = SdkConstants.currentPlatform() == SdkConstants.PLATFORM_WINDOWS; 375 if (name2.equals(name) || (ignoreCase && name2.equalsIgnoreCase(name))) { 383 if (name2.equals(name) || (ignoreCase && name2.equalsIgnoreCase(name))) { 401 boolean ignoreCase = SdkConstants.currentPlatform() == SdkConstants.PLATFORM_WINDOWS; 408 if (name2.equals(name) || (ignoreCase && name2.equalsIgnoreCase(name))) { [all...] |
/external/webkit/Source/JavaScriptCore/wtf/text/ |
WTFString.h | 377 inline bool equalPossiblyIgnoringCase(const String& a, const String& b, bool ignoreCase) 379 return ignoreCase ? equalIgnoringCase(a, b) : (a == b);
|
/build/tools/droiddoc/templates-sdk/assets/js/ |
prettify.js | 5 (j=+j.substring(1))&&j<=i&&(f[c]="\\"+d[i]);for(i=c=0;c<b;++c)"^"===f[c]&&"^"!==f[c+1]&&(f[c]="");if(a.ignoreCase&&s)for(c=0;c<b;++c)j=f[c],a=j.charAt(0),j.length>=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p<d;++p){var g=a[p];if(g.ignoreCase)l=!0;else if(/[a-z]/i.test(g.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){s=!0;l=!1;break}}for(var r=
|
/external/tinyxml/ |
tinyxml.h | 272 bool ignoreCase, // whether to ignore case in the end tag 327 bool ignoreCase, [all...] |