HomeSort by relevance Sort by last modified time
    Searched refs:ignore_case (Results 1 - 14 of 14) 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/chromium_org/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/chromium_org/base/win/
scoped_variant.h 82 int Compare(const VARIANT& var, bool ignore_case = false) const;
scoped_variant.cc 90 int ScopedVariant::Compare(const VARIANT& var, bool ignore_case) const {
91 ULONG flags = ignore_case ? NORM_IGNORECASE : 0;
  /external/chromium_org/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/chromium_org/tools/valgrind/
suppressions.py 76 def GlobToRegex(glob_pattern, ignore_case=False):
84 elif ignore_case and char.isalpha():
415 regex += '(%s\!.*\n)+' % GlobToRegex(mod, ignore_case=True)
418 regex += '%s\!%s\n' % (GlobToRegex(mod, ignore_case=True),
419 GlobToRegex(func, ignore_case=False))
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
genperf.c 265 int ignore_case = 0; local
397 ignore_case = 1;
  /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 301 milliseconds