Home | History | Annotate | Download | only in grid

Lines Matching defs:locations

739      * Looks up the x[] and y[] locations of the columns and rows in the given GridLayout
754 Field locations = horizontal.getClass().getDeclaredField("locations"); //$NON-NLS-1$
755 assert locations.getType().isArray() : locations.getType();
756 locations.setAccessible(true);
757 Object horizontalLocations = locations.get(horizontal);
758 Object verticalLocations = locations.get(vertical);