Lines Matching refs:S2Cell
26 public final strictfp class S2Cell implements S2Region { class
39 S2Cell() { in S2Cell() method in S2Cell
46 public S2Cell(S2CellId id) { in S2Cell() method in S2Cell
51 public static S2Cell fromFacePosLevel(int face, byte pos, int level) { in fromFacePosLevel()
52 return new S2Cell(S2CellId.fromFacePosLevel(face, pos, level)); in fromFacePosLevel()
56 public S2Cell(S2Point p) { in S2Cell() method in S2Cell
60 public S2Cell(S2LatLng ll) { in S2Cell() method in S2Cell
130 public boolean subdivide(S2Cell children[]) { in subdivide()
144 S2Cell child = children[pos]; in subdivide()
259 S2Cell clone = new S2Cell(); in clone()
359 public boolean mayIntersect(S2Cell cell) { in mayIntersect()
377 public boolean contains(S2Cell cell) { in contains()
433 if (that instanceof S2Cell) { in equals()
434 S2Cell thatCell = (S2Cell) that; in equals()