Home
last modified time | relevance | path

Searched refs:equalityUsesCanonicalForm (Results 1 – 2 of 2) sorted by relevance

/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DPathService.java63 private final boolean equalityUsesCanonicalForm; field in PathService
83 boolean equalityUsesCanonicalForm) { in PathService() argument
87 this.equalityUsesCanonicalForm = equalityUsesCanonicalForm; in PathService()
89 this.rootOrdering = equalityUsesCanonicalForm ? CANONICAL_ROOT_ORDERING : DISPLAY_ROOT_ORDERING; in PathService()
91 equalityUsesCanonicalForm ? CANONICAL_NAMES_ORDERING : DISPLAY_NAMES_ORDERING; in PathService()
211 if (equalityUsesCanonicalForm) { in hash()
259 equalityUsesCanonicalForm ? canonicalNormalizations : displayNormalizations); in createPathMatcher()
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DPathServiceTest.java242 public static PathService fakePathService(PathType type, boolean equalityUsesCanonicalForm) { in fakePathService() argument
244 new PathService(type, NO_NORMALIZATIONS, NO_NORMALIZATIONS, equalityUsesCanonicalForm); in fakePathService()