OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pathFactory
(Results
1 - 11
of
11
) sorted by null
/external/guava/guava/src/com/google/common/collect/
BstRangeOps.java
127
GeneralRange<K> range, BstSide side, BstPathFactory<N, P>
pathFactory
, @Nullable N root) {
129
checkNotNull(
pathFactory
);
134
P path =
pathFactory
.initialPath(root);
135
return furthestPath(range, side,
pathFactory
, path);
139
GeneralRange<K> range, BstSide side, BstPathFactory<N, P>
pathFactory
, P currentPath) {
144
currentPath =
pathFactory
.extension(currentPath, side.other());
145
return furthestPath(range, side,
pathFactory
, currentPath);
150
P alphaPath =
pathFactory
.extension(currentPath, side);
151
alphaPath = furthestPath(range, side,
pathFactory
, alphaPath);
TreeMultiset.java
249
private BstPathFactory<Node<E>, BstInOrderPath<Node<E>>>
pathFactory
() {
257
BstRangeOps.furthestPath(range, LEFT,
pathFactory
(), root);
265
BstRangeOps.furthestPath(range, RIGHT,
pathFactory
(), root);
/external/guava/guava-tests/test/com/google/common/collect/
BstRangeOpsTest.java
26
import static com.google.common.collect.BstTesting.
pathFactory
;
255
ASSERT.that(pathToList(BstRangeOps.furthestPath(range1, LEFT,
pathFactory
, d)))
258
assertNull(BstRangeOps.furthestPath(range1, LEFT,
pathFactory
, null));
275
ASSERT.that(pathToList(BstRangeOps.furthestPath(range1, LEFT,
pathFactory
, d)))
279
ASSERT.that(pathToList(BstRangeOps.furthestPath(range2, LEFT,
pathFactory
, d)))
283
ASSERT.that(pathToList(BstRangeOps.furthestPath(range3, LEFT,
pathFactory
, d)))
287
assertNull(BstRangeOps.furthestPath(range4, LEFT,
pathFactory
, d));
304
ASSERT.that(pathToList(BstRangeOps.furthestPath(range1, LEFT,
pathFactory
, d)))
308
ASSERT.that(pathToList(BstRangeOps.furthestPath(range2, LEFT,
pathFactory
, d)))
312
assertNull(BstRangeOps.furthestPath(range3, LEFT,
pathFactory
, d))
[
all
...]
BstTesting.java
98
static final BstPathFactory<SimpleNode, BstInOrderPath<SimpleNode>>
pathFactory
=
139
BstInOrderPath<SimpleNode> path =
pathFactory
.initialPath(root);
141
path =
pathFactory
.extension(path, LEFT);
167
tester.setDefault(BstPathFactory.class,
pathFactory
);
168
tester.setDefault(BstPath.class,
pathFactory
.initialPath(node));
169
tester.setDefault(BstInOrderPath.class,
pathFactory
.initialPath(node));
BstOperationsTest.java
23
import static com.google.common.collect.BstTesting.
pathFactory
;
339
BstInOrderPath<SimpleNode> path = extension(
pathFactory
, d, LEFT, LEFT);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java
245
private BstPathFactory<Node<E>, BstInOrderPath<Node<E>>>
pathFactory
() {
253
BstRangeOps.furthestPath(range, LEFT,
pathFactory
(), root);
261
BstRangeOps.furthestPath(range, RIGHT,
pathFactory
(), root);
/prebuilts/sdk/tools/lib/
guava-10.0.1.jar
lint.jar
lint_api.jar
lint_checks.jar
/prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar
Completed in 1420 milliseconds