Searched defs:mGrid (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/opengl/tests/testViewport/src/com/android/test/
H A DTestView.java228 private Grid mGrid; field in class:TestView.Renderer
233 mGrid.draw(gl);
249 mGrid = new Grid(2, 2);
255 mGrid.set(i,j, x, y, z);
258 mGrid.createBufferObjects(gl);
/frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/
H A DBallsRS.java37 private ScriptField_BallGrid mGrid; field in class:BallsRS
113 mGrid = ScriptField_BallGrid.create2D(mRS, (width + 99) / 100, (height + 99) / 100);
126 mScript.set_gGrid(mGrid.getAllocation());
136 mPhysicsScript.set_gGrid(mGrid.getAllocation());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGridLayoutManager.java315 private StaggeredGrid mGrid; field in class:GridLayoutManager
540 return mGrid != null;
722 // and existing mGrid contains the focusPosition.
724 mGrid != null && mGrid.getSize() > 0 && focusPosition >= 0 &&
725 focusPosition >= mGrid.getFirstIndex() &&
726 focusPosition <= mGrid.getLastIndex()) {
727 // strip mGrid to a subset (like a column) that contains focusPosition
728 mGrid.stripDownTo(focusPosition);
730 int firstIndex = mGrid
[all...]

Completed in 1903 milliseconds