Searched refs:INVALID_DIRECTIONS (Results 1 – 1 of 1) sorted by relevance
94 private static final Map<Integer, Integer> INVALID_DIRECTIONS; field in ComplicationLayoutParams96 INVALID_DIRECTIONS = new HashMap<>();97 INVALID_DIRECTIONS.put(POSITION_BOTTOM, DIRECTION_DOWN); in INVALID_DIRECTIONS.put()98 INVALID_DIRECTIONS.put(POSITION_TOP, DIRECTION_UP); in INVALID_DIRECTIONS.put()99 INVALID_DIRECTIONS.put(POSITION_START, DIRECTION_START); in INVALID_DIRECTIONS.put()100 INVALID_DIRECTIONS.put(POSITION_END, DIRECTION_END); in INVALID_DIRECTIONS.put()242 && INVALID_DIRECTIONS.containsKey(currentPosition) in validateDirection()243 && (direction & INVALID_DIRECTIONS.get(currentPosition)) != 0) { in validateDirection()