HomeSort by relevance Sort by last modified time
    Searched refs:otherStart (Results 1 - 5 of 5) sorted by null

  /external/cldr/tools/java/org/unicode/cldr/util/
DayPeriodInfo.java 444 int otherStart = other.start % NOON;
449 if (otherStart <= flexEnd && otherEnd >= flexStart) { // overlap?
451 sampleError.value = Math.max(otherStart, otherEnd);
462 int otherStart = other.start;
467 if (otherStart != flexStart) { // not same??
469 sampleError.value = (otherStart + flexStart) / 2; // half-way between
  /external/cldr/tools/java/org/unicode/cldr/draft/
GapString.java 201 public GapString replace(int start, int end, CharSequence other, int otherStart, int otherEnd) {
203 return insert(start, other, otherStart, otherEnd);
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 699 public boolean calculateIntersection(Vector2 otherStart, Vector2 otherEnd,
706 final float x3 = otherStart.x;
710 final float y3 = otherStart.y;
    [all...]
  /external/icu/icu4c/source/common/
normalizer2impl.cpp 208 UBool ReorderingBuffer::equals(const UChar *otherStart, const UChar *otherLimit) const {
211 length==(int32_t)(otherLimit-otherStart) &&
212 0==u_memcmp(start, otherStart, length);
215 UBool ReorderingBuffer::equals(const uint8_t *otherStart, const uint8_t *otherLimit) const {
216 U_ASSERT((otherLimit - otherStart) <= INT32_MAX); // ensured by caller
218 int32_t otherLength = (int32_t)(otherLimit - otherStart);
234 U8_NEXT_UNSAFE(otherStart, j, other);
    [all...]
normalizer2impl.h 162 UBool equals(const uint8_t *otherStart, const uint8_t *otherLimit) const;
    [all...]

Completed in 330 milliseconds