Searched refs:ignore_case (Results 1 - 5 of 5) sorted by relevance

/external/v8/test/mjsunit/
H A Dcyrillic.js112 var ignore_case = (i == 0);
113 var flag = ignore_case ? "i" : "";
124 assertEquals(ignore_case, Range(greek.first, cyrillic.LAST, flag).test(greek.FIRST), 25);
125 assertEquals(ignore_case, Range(greek.first, cyrillic.LAST, flag).test(greek.MIDDLE), 26);
126 assertEquals(ignore_case, Range(greek.first, cyrillic.LAST, flag).test(greek.LAST), 27);
128 assertEquals(ignore_case, Range(greek.first, cyrillic.LAST, flag).test(cyrillic.first), 28);
129 assertEquals(ignore_case, Range(greek.first, cyrillic.LAST, flag).test(cyrillic.middle), 29);
130 assertEquals(ignore_case, Range(greek.first, cyrillic.LAST, flag).test(cyrillic.last), 30);
187 var ignore_case = (j == 0);
188 var flag = ignore_case
[all...]
/external/chromium/base/win/
H A Dscoped_variant.h83 int Compare(const VARIANT& var, bool ignore_case = false) const;
H A Dscoped_variant.cc90 int ScopedVariant::Compare(const VARIANT& var, bool ignore_case) const {
91 ULONG flags = ignore_case ? NORM_IGNORECASE : 0;
/external/v8/src/
H A Djsregexp.h879 static bool SkipPass(int pass, bool ignore_case);
1061 DispatchTable* GetTable(bool ignore_case);
1353 DispatchTableConstructor(DispatchTable* table, bool ignore_case) argument
1356 ignore_case_(ignore_case) { }
1395 Analysis(bool ignore_case, bool is_ascii) argument
1396 : ignore_case_(ignore_case),
1458 bool ignore_case,
1463 static void DotPrint(const char* label, RegExpNode* node, bool ignore_case);
H A Djsregexp.cc777 DispatchTable* ChoiceNode::GetTable(bool ignore_case) { argument
780 DispatchTableConstructor cons(table_, ignore_case);
789 RegExpCompiler(int capture_count, bool ignore_case, bool is_ascii);
820 inline bool ignore_case() { return ignore_case_; } function in class:v8::internal::RegExpCompiler
861 RegExpCompiler::RegExpCompiler(int capture_count, bool ignore_case, bool ascii) argument
865 ignore_case_(ignore_case),
1961 if (compiler->ignore_case()) {
2541 bool TextNode::SkipPass(int int_pass, bool ignore_case) { argument
2543 if (ignore_case) {
2580 if (!SkipPass(pass, compiler->ignore_case())) {
3247 DotPrinter(bool ignore_case) argument
3588 DotPrint(const char* label, RegExpNode* node, bool ignore_case) argument
5253 Compile(RegExpCompileData* data, bool ignore_case, bool is_multiline, Handle<String> pattern, bool is_ascii) argument
[all...]

Completed in 125 milliseconds