/external/v8/test/mjsunit/es6/ |
regexp-flags.js | 10 assertTrue(r1.ignoreCase); 19 assertThrows(function() { r2.ignoreCase; }, TypeError); 28 assertFalse(r3.ignoreCase); 36 Object.defineProperty(r3, "ignoreCase", { 42 assertTrue(r3.ignoreCase); 62 testName("ignoreCase");
|
/external/v8/test/mjsunit/regress/ |
regress-447561.js | 8 assertThrows(function() { ignoreCase });
|
regress-219.js | 39 function assertFlags(re, global, multiline, ignoreCase) { 43 (ignoreCase ? assertTrue : assertFalse)(re.ignoreCase, name + "i");
|
/frameworks/av/media/libstagefright/foundation/ |
AStringUtils.cpp | 23 int AStringUtils::Compare(const char *a, const char *b, size_t len, bool ignoreCase) { 25 return ignoreCase ? strncasecmp(a, b, len) : strncmp(a, b, len); 30 const char *glob, size_t globLen, const char *str, size_t strLen, bool ignoreCase) { 38 if (strLen < globIx || Compare(str, glob, globIx /* len */, ignoreCase)) { 59 return !Compare(tail, pattern, len, ignoreCase); 62 while (ix + len <= strLen && Compare(str + ix, pattern, len, ignoreCase)) {
|
/external/v8/test/mjsunit/harmony/ |
regexp-flags.js | 25 assertEquals('i', testGenericFlags({ ignoreCase: true })); 42 get ignoreCase() {
|
/frameworks/av/include/media/stagefright/foundation/ |
AStringUtils.h | 26 static int Compare(const char *a, const char *b, size_t len, bool ignoreCase); 31 const char *glob, size_t globLen, const char *str, size_t strLen, bool ignoreCase);
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
script_injector.py | 24 re.IGNORECASE | re.DOTALL) 26 re.IGNORECASE | re.DOTALL) 28 re.IGNORECASE | re.DOTALL)
|
/external/skia/tools/copyright/ |
fileparser.py | 27 self._copyright_pattern = re.compile('copyright', re.IGNORECASE) 29 'copyright.*\D(\d{4})\W*(\w.*[\w.])', re.IGNORECASE)
|
/external/v8/test/webkit/ |
regexp-compile-expected.txt | 31 PASS re.ignoreCase is false 37 PASS re.ignoreCase is true
|
regexp-compile.js | 33 shouldBe("re.ignoreCase", "false"); 45 shouldBe("re.ignoreCase", "true");
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
TextTrieMap.java | 28 * @param ignoreCase true to use simple case insensitive match 30 public TextTrieMap(boolean ignoreCase) { 31 _ignoreCase = ignoreCase; 114 CharIterator(CharSequence text, int offset, boolean ignoreCase) { 117 _ignoreCase = ignoreCase;
|
/external/v8/test/webkit/fast/js/kde/ |
RegExp.js | 45 shouldBeFalse("(/a/).ignoreCase"); 46 shouldBeTrue("ri.ignoreCase"); 56 ri.ignoreCase = false; 57 shouldBeTrue("ri.ignoreCase"); 144 shouldBeTrue("reg.ignoreCase == true");
|
RegExp-expected.txt | 39 PASS (/a/).ignoreCase is false 40 PASS ri.ignoreCase is true 47 PASS ri.ignoreCase is true 106 PASS reg.ignoreCase == true is true
|
/external/clang/test/Analysis/ |
method-arg-decay.m | 54 @end @protocol PBXFindableText <PBXSelectableText> - (BOOL)findText:(NSString *)string ignoreCase:(BOOL)ignoreCase matchStyle:(PBXFindMatchStyle)matchStyle backwards:(BOOL)backwards wrap:(BOOL)wrap;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
StringListPropertyEditor.java | 86 // m_ignoreCase = "true".equals(parameters.get("ignoreCase"));
|
/external/llvm/unittests/Option/ |
OptionParsingTest.cpp | 50 TestOptTable(bool IgnoreCase = false) 51 : OptTable(InfoTable, IgnoreCase) {} 158 TEST(Option, IgnoreCase) {
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
TextTrieMap.java | 30 * @param ignoreCase true to use simple case insensitive match 32 public TextTrieMap(boolean ignoreCase) { 33 _ignoreCase = ignoreCase; 116 CharIterator(CharSequence text, int offset, boolean ignoreCase) { 119 _ignoreCase = ignoreCase;
|
/external/llvm/lib/Option/ |
OptTable.cpp | 87 OptTable::OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase) 88 : OptionInfos(OptionInfos), IgnoreCase(IgnoreCase), TheInputOptionID(0), 174 bool IgnoreCase) { 179 bool Matched = IgnoreCase 219 if ((ArgSize = matchOption(Start, Str, IgnoreCase)))
|
/external/llvm/utils/ |
schedcover.py | 76 filt = re.compile(sys.argv[2], re.IGNORECASE)
|
/external/v8/src/js/ |
harmony-regexp.js | 34 if (this.ignoreCase) result += 'i';
|
/external/v8/test/mjsunit/ |
regexp-string-methods.js | 43 assertTrue(f2.ignoreCase);
|
/external/llvm/include/llvm/Option/ |
OptTable.h | 54 bool IgnoreCase; 76 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
|
/external/tpm2/generator/ |
generator.py | 65 if re.search('part2', name, re.IGNORECASE): 69 if re.search('part3', name, re.IGNORECASE):
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
StringMap.java | 63 * @param ignoreCase 65 public StringMap(boolean ignoreCase) 68 _ignoreCase=ignoreCase; 73 * @param ignoreCase 77 public StringMap(boolean ignoreCase,int width) 80 _ignoreCase=ignoreCase; 85 /** Set the ignoreCase attribute. 564 Node(boolean ignoreCase,String s, int offset) 573 if (ignoreCase)
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
buildbucket_job_status_test.py | 124 response.body, re.IGNORECASE))
|