HomeSort by relevance Sort by last modified time
    Searched refs:ignore_case (Results 1 - 10 of 10) sorted by null

  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugPubnames.h 28 bool Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offset_coll) const;
DWARFDebugInfo.h 63 bool Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offsets) const;
DWARFDebugPubnamesSet.h 76 void Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offset_coll) const;
DWARFDebugPubnames.cpp 267 DWARFDebugPubnames::Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offsets) const
276 (*pos).Find(name, ignore_case, die_offsets);
DWARFDebugInfo.cpp 722 bool ignore_case; member in struct:FindCallbackStringInfoTag
752 if ((info->ignore_case ? strcasecmp(die_name, info->name) : strcmp(die_name, info->name)) == 0)
771 DWARFDebugInfo::Find(const char* name, bool ignore_case, vector<dw_offset_t>& die_offsets) const
776 FindCallbackStringInfo info = { name, ignore_case, NULL, die_offsets };
DWARFDebugPubnamesSet.cpp 145 DWARFDebugPubnamesSet::Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offset_coll) const
  /external/v8/test/mjsunit/
cyrillic.js 112 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 ? "i" : ""
    [all...]
  /external/v8/src/
jsregexp.h 632 virtual RegExpNode* FilterOneByte(int depth, bool ignore_case) {
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);
    [all...]
jsregexp.cc 65 flags |= JSRegExp::IGNORE_CASE;
1027 inline bool ignore_case() { return ignore_case_; } function in class:v8::internal::RegExpCompiler
    [all...]
  /external/bison/
maint.mk 237 # ignore_case
267 export ignore_case = macro
268 _ignore_case = $$(test -n "$$ignore_case" && printf %s -i || :)
425 ignore_case=1 \
    [all...]

Completed in 212 milliseconds