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

  /libcore/luni/src/main/java/java/util/
TreeMap.java 247 * Returns the node at or adjacent to the given key, creating it if requested.
381 * adjacent node from one of those subtrees into this node's place.
383 * Removing the adjacent node may change this node's subtrees. This
384 * node may no longer have two subtrees once the adjacent node is
388 Node<K, V> adjacent = (left.height > right.height) ? left.last() : right.first(); local
389 removeInternal(adjacent); // takes care of rebalance and size--
395 adjacent.left = left;
396 left.parent = adjacent;
403 adjacent.right = right;
404 right.parent = adjacent;
    [all...]
  /external/chromium/third_party/icu/source/common/
unorm.cpp 1348 UBool adjacent; local
    [all...]
  /external/webkit/WebKit/android/nav/
SelectText.cpp 480 bool adjacent() function in class:EdgeCheck
689 bool adjacent = (full.fLeft - mLast.fRight) < spaceGap; local
691 if (mLast.isEmpty() || (sameBaseLine && adjacent)) {
    [all...]

Completed in 191 milliseconds