/external/v8/test/mjsunit/ |
D | cyrillic.js | 112 var ignore_case = (i == 0); variable 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 ? "i" : ""; [all …]
|
/external/v8/src/ |
D | jsregexp.h | 632 virtual RegExpNode* FilterOneByte(int depth, bool ignore_case) { in FilterOneByte() argument 729 virtual RegExpNode* FilterOneByte(int depth, bool ignore_case); 739 RegExpNode* FilterSuccessor(int depth, bool ignore_case); 859 virtual RegExpNode* FilterOneByte(int depth, bool ignore_case); 869 static bool SkipPass(int pass, bool ignore_case); 1065 DispatchTable* GetTable(bool ignore_case); 1088 virtual RegExpNode* FilterOneByte(int depth, bool ignore_case); 1161 virtual RegExpNode* FilterOneByte(int depth, bool ignore_case); 1189 virtual RegExpNode* FilterOneByte(int depth, bool ignore_case); 1556 DispatchTableConstructor(DispatchTable* table, bool ignore_case, in DispatchTableConstructor() argument [all …]
|
D | jsregexp.cc | 936 DispatchTable* ChoiceNode::GetTable(bool ignore_case) { in GetTable() argument 939 DispatchTableConstructor cons(table_, ignore_case, zone()); in GetTable() 995 RegExpCompiler(int capture_count, bool ignore_case, bool is_one_byte, 1027 inline bool ignore_case() { return ignore_case_; } in ignore_case() function in v8::internal::RegExpCompiler 1073 RegExpCompiler::RegExpCompiler(int capture_count, bool ignore_case, in RegExpCompiler() argument 1078 ignore_case_(ignore_case), in RegExpCompiler() 2559 if (compiler->ignore_case()) { in GetQuickCheckDetails() 2755 RegExpNode* SeqRegExpNode::FilterOneByte(int depth, bool ignore_case) { in FilterOneByte() argument 2760 return FilterSuccessor(depth - 1, ignore_case); in FilterOneByte() 2764 RegExpNode* SeqRegExpNode::FilterSuccessor(int depth, bool ignore_case) { in FilterSuccessor() argument [all …]
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDebugPubnames.h | 28 … bool Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offset_coll) const;
|
D | DWARFDebugInfo.cpp | 722 bool ignore_case; member 752 … if ((info->ignore_case ? strcasecmp(die_name, info->name) : strcmp(die_name, info->name)) == 0) in FindCallbackString() 771 DWARFDebugInfo::Find(const char* name, bool ignore_case, vector<dw_offset_t>& die_offsets) const in Find() argument 776 FindCallbackStringInfo info = { name, ignore_case, NULL, die_offsets }; in Find()
|
D | DWARFDebugPubnames.cpp | 267 DWARFDebugPubnames::Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offsets)… in Find() argument 276 (*pos).Find(name, ignore_case, die_offsets); in Find()
|
D | DWARFDebugPubnamesSet.h | 76 …void Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offset_coll) co…
|
D | DWARFDebugInfo.h | 63 bool Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offsets) const;
|
D | DWARFDebugPubnamesSet.cpp | 145 DWARFDebugPubnamesSet::Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offse… in Find() argument
|
/external/bison/ |
D | maint.mk | 267 export ignore_case = 268 _ignore_case = $$(test -n "$$ignore_case" && printf %s -i || :) 425 ignore_case=1 \
|