/external/webkit/Source/WebCore/html/ |
TimeRanges.cpp | 121 float TimeRanges::nearest(float time) const function in class:TimeRanges
|
/external/libvpx/vp8/decoder/ |
decodemv.c | 328 MV nearest, nearby, best_mv; local 335 vp8_find_near_mvs(&pbi->mb, mi, &nearest, &nearby, &best_mv, rct, mbmi->ref_frame, pbi->common.ref_frame_sign_bias); 431 *mv = nearest;
|
/external/libvpx/vp8/encoder/ |
encodeframe.c | 1352 MV nearest, nearby; local [all...] |
/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/apps/Launcher2/src/com/android/launcher2/ |
CellLayout.java | 142 // When a drag operation is in progress, holds the nearest cell to the touch point 1180 final int[] nearest = findNearestVacantArea(originX, originY, spanX, spanY, v, mDragCell); local [all...] |