/external/icu/icu4c/source/i18n/ |
vzone.cpp | 161 vzone_getNextTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result) { 162 return ((VTimeZone*)zone)->VTimeZone::getNextTransition(base, inclusive, *(TimeZoneTransition*)result); 166 vzone_getPreviousTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result) { 167 return ((VTimeZone*)zone)->VTimeZone::getPreviousTransition(base, inclusive, *(TimeZoneTransition*)result);
|
olsontz.h | 233 * @param inclusive Whether the base time is inclusive or not. 237 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const; 243 * @param inclusive Whether the base time is inclusive or not. 247 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
|
tzrule.cpp | 162 UBool /*inclusive*/, 171 UBool /*inclusive*/, 354 UBool inclusive, 363 if (tmp < base || (!inclusive && (tmp == base))) { 378 UBool inclusive, 387 if (tmp > base || (!inclusive && (tmp == base))) { 544 UBool inclusive, 549 if (time < base || (!inclusive && time == base)) { 564 UBool inclusive, 569 if (time < base || (inclusive && time == base)) [all...] |
vzone.h | 301 * @param inclusive Whether the base time is inclusive or not. 306 vzone_getNextTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result); 312 * @param inclusive Whether the base time is inclusive or not. 317 vzone_getPreviousTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result);
|
olsontz.cpp | 879 OlsonTimeZone::getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const { 887 if (inclusive && base == firstFinalTZTransition->getTime()) { [all...] |
simpletz.cpp | [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ImmutableSortedSet.java | 601 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) { 602 return headSetImpl(checkNotNull(toElement), inclusive); 647 ImmutableSortedSet<E> tailSet(E fromElement, boolean inclusive) { 648 return tailSetImpl(checkNotNull(fromElement), inclusive); 655 abstract ImmutableSortedSet<E> headSetImpl(E toElement, boolean inclusive); 660 abstract ImmutableSortedSet<E> tailSetImpl(E fromElement, boolean inclusive);
|
EmptyContiguousSet.java | 61 @Override ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) {
|
ImmutableSortedMap.java | 654 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive){ 656 if (inclusive) { 666 * whose keys ranges from {@code fromKey}, inclusive, to {@code toKey}, 705 ImmutableSortedMap<K, V> tailMap(K fromKey, boolean inclusive) { 707 if (inclusive) {
|
/external/chromium_org/third_party/icu/source/i18n/ |
olsontz.h | 233 * @param inclusive Whether the base time is inclusive or not. 237 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const; 243 * @param inclusive Whether the base time is inclusive or not. 247 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
|
tzrule.cpp | 162 UBool /*inclusive*/, 171 UBool /*inclusive*/, 354 UBool inclusive, 363 if (tmp < base || (!inclusive && (tmp == base))) { 378 UBool inclusive, 387 if (tmp > base || (!inclusive && (tmp == base))) { 544 UBool inclusive, 549 if (time < base || (!inclusive && time == base)) { 564 UBool inclusive, 569 if (time < base || (inclusive && time == base)) [all...] |
vzone.h | 301 * @param inclusive Whether the base time is inclusive or not. 306 vzone_getNextTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result); 312 * @param inclusive Whether the base time is inclusive or not. 317 vzone_getPreviousTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result);
|
olsontz.cpp | 879 OlsonTimeZone::getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const { 887 if (inclusive && base == firstFinalTZTransition->getTime()) { [all...] |
simpletz.cpp | [all...] |
/external/deqp/framework/referencerenderer/ |
rrRasterizer.hpp | 100 inline EdgeFunction (void) : a(0), b(0), c(0), inclusive(false) {} 105 bool inclusive; //!< True if edge is inclusive according to fill rules. member in struct:rr::EdgeFunction 159 tcu::IVec2 m_bboxMin; //!< Bounding box min (inclusive). 160 tcu::IVec2 m_bboxMax; //!< Bounding box max (inclusive). 197 tcu::IVec2 m_bboxMin; //!< Bounding box min (inclusive). 198 tcu::IVec2 m_bboxMax; //!< Bounding box max (inclusive).
|
rrRasterizer.cpp | 63 bool inclusive = false; //!< Inclusive in CCW orientation. local 66 inclusive = verticalFill == FILL_BOTTOM ? xd >= 0 : xd <= 0; 68 inclusive = horizontalFill == FILL_LEFT ? yd <= 0 : yd >= 0; 73 edge.inclusive = inclusive; //!< \todo [pyry] Swap for CW triangles 81 edge.inclusive = !edge.inclusive; 91 return edge.inclusive ? (edgeVal >= 0) : (edgeVal > 0); 387 // start must be on inside this half space (left or at the inclusive boundary [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableSortedMap.java | 272 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { 274 if (inclusive) { 303 public ImmutableSortedMap<K, V> tailMap(K fromKey, boolean inclusive) { 305 if (!inclusive) {
|
ImmutableSortedSet.java | 317 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) { 319 if (inclusive) { 358 ImmutableSortedSet<E> tailSet(E fromElement, boolean inclusive) { 360 if (!inclusive) {
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
vtzone.h | 317 * @param inclusive Whether the base time is inclusive or not. 322 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const; 327 * @param inclusive Whether the base time is inclusive or not. 332 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
|
simpletz.h | [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
vtzone.h | 317 * @param inclusive Whether the base time is inclusive or not. 322 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const; 327 * @param inclusive Whether the base time is inclusive or not. 332 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const;
|
simpletz.h | [all...] |
/external/chromium_org/extensions/browser/api/declarative_webrequest/ |
webrequest_condition_attribute.h | 139 bool inclusive);
|
/external/libunwind/doc/ |
unw_flush_cache.tex | 20 relates to address-range \Var{lo} to \Var{hi} (non-inclusive) in the
|
/external/chromium_org/tools/sheriffing/ |
failureinfo.js | 7 * CLs, so it's inclusive on both ends.
|