Searched refs:range_list (Results 1 - 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DPluralRules.java96 * relation = not? expr not? rel not? range_list
101 * range_list = (range | value) (',' range_list)*
165 * includes all values. Using 'within' with a range_list consisting entirely of values is the same as using 'in' (it's
1497 private final long[] range_list; field in class:PluralRules.RangeConstraint
1507 this.range_list = vals;
1522 if (test && range_list != null) {
1524 for (int i = 0; !test && i < range_list.length; i += 2) {
1525 test = n >= range_list[i] && n <= range_list[
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPluralRules.java95 * relation = not? expr not? rel not? range_list
100 * range_list = (range | value) (',' range_list)*
164 * includes all values. Using 'within' with a range_list consisting entirely of values is the same as using 'in' (it's
1451 private final long[] range_list; field in class:PluralRules.RangeConstraint
1461 this.range_list = vals;
1476 if (test && range_list != null) {
1478 for (int i = 0; !test && i < range_list.length; i += 2) {
1479 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...]
/external/protobuf/python/google/protobuf/pyext/
H A Ddescriptor.cc507 PyObject* range_list = PyList_New(descriptor->extension_range_count()); local
513 PyList_SetItem(range_list, i, PyTuple_Pack(2, start, end));
516 return range_list;

Completed in 302 milliseconds