Searched defs:range_list (Results 1 - 3 of 3) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugRanges.cpp30 RangeList range_list; local
33 while (Extract(dwarf2Data, &offset, range_list))
35 m_range_map[debug_ranges_offset] = range_list;
85 DWARFDebugRanges::Extract(SymbolFileDWARF* dwarf2Data, lldb::offset_t *offset_ptr, RangeList &range_list) argument
87 range_list.Clear();
126 range_list.Append(Range(begin, end - begin));
180 DWARFDebugRanges::FindRanges(dw_offset_t debug_ranges_offset, RangeList& range_list) const
185 range_list = pos->second;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPluralRules.java94 * relation = not? expr not? rel not? range_list
99 * range_list = (range | value) (',' range_list)*
163 * includes all values. Using 'within' with a range_list consisting entirely of values is the same as using 'in' (it's
1446 private final long[] range_list; field in class:PluralRules.RangeConstraint
1456 this.range_list = vals;
1470 if (test && range_list != null) {
1472 for (int i = 0; !test && i < range_list.length; i += 2) {
1473 test = n >= range_list[i] && n <= range_list[
[all...]
/external/messageformat/java/com/ibm/icu/simple/
H A DPluralRules.java90 * relation = not? expr not? rel not? range_list
95 * range_list = (range | value) (',' range_list)*
159 * includes all values. Using 'within' with a range_list consisting entirely of values is the same as using 'in' (it's
1436 private final long[] range_list; field in class:PluralRules.RangeConstraint
1446 this.range_list = vals;
1460 if (test && range_list != null) {
1462 for (int i = 0; !test && i < range_list.length; i += 2) {
1463 test = n >= range_list[i] && n <= range_list[
[all...]

Completed in 153 milliseconds