Lines Matching full:within
56 UNICODE_STRING_SIMPLE("a: n within 2..5"),
58 UNICODE_STRING_SIMPLE("a: n not within 2..5"),
60 UNICODE_STRING_SIMPLE("a: n mod 10 within 2..5"),
63 UNICODE_STRING_SIMPLE("a: n mod 10 within 2..3 or n mod 10 is 5"),
66 UNICODE_STRING_SIMPLE("a: n mod 2 is 1 and n is not 3 and n within 1..11"),
154 UnicodeString complexRule2 = UNICODE_STRING_SIMPLE("a: n within 2..5; b: n within 5..8; c: n mod 2 is 1");
330 assertRuleValue("n within 2..2", 2);
332 assertRuleValue("n within 3..4", UPLRULES_NO_UNIQUE_VALUE);
424 "a: n within 2..5", "a: null; other: null",
425 "a: n not within 2..5", "a: null; other: null",
426 "a: n in 2..5 or n within 6..8", "a: null", // ignore 'other' here on out, always null
427 "a: n in 2..5 and n within 6..8", "a:",
428 "a: n in 2..5 and n within 5..8", "a: 5",
429 "a: n within 2..5 and n within 6..8", "a:", // our sampling catches these
430 "a: n within 2..5 and n within 5..8", "a: 5", // ''
431 "a: n within 1..2 and n within 2..3 or n within 3..4 and n within 4..5", "a: 2,4",
432 "a: n within 1..2 and n within 2..3 or n within 3..4 and n within 4..5 "
433 "or n within 5..6 and n within 6..7", "a: null", // but not this...
435 "a: n mod 3 is 0 and n within 1..2", "a:",
436 "a: n mod 3 is 0 and n within 0..5", "a: 0,3",
437 "a: n mod 3 is 0 and n within 0..6", "a: null", // similarly with mod, we don't catch...