HomeSort by relevance Sort by last modified time
    Searched defs:nearest (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/html/
TimeRanges.cpp 121 float TimeRanges::nearest(float time) const function in class:TimeRanges
  /libcore/luni/src/main/java/java/util/
TreeMap.java 275 Node<K, V> nearest = root; local
278 ? comparableKey.compareTo(nearest.key)
279 : comparator.compare(key, nearest.key);
287 return nearest.prev();
292 return nearest;
294 return nearest.next();
298 Node<K, V> child = (comparison < 0) ? nearest.left : nearest.right;
300 nearest = child;
305 * We found a nearest node. Every key not in the tree has up to tw
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/
proximity_info_state_utils.cpp 356 // the given point and the nearest key position.
399 const int x, const int y, const int time, const bool lastPoint, const float nearest,
423 } else if (nearest < ProximityInfoParams::NEAR_KEY_THRESHOLD_FOR_POINT_SCORE) {
459 const float nearest = updateNearKeysDistances(proximityInfo, maxPointToKeyLength, x, y, local
461 const float score = getPointScore(mostCommonKeyWidth, x, y, time, isLastPoint, nearest,
    [all...]

Completed in 251 milliseconds