HomeSort by relevance Sort by last modified time
    Searched refs:Grid (Results 1 - 25 of 35) sorted by null

1 2

  /external/replicaisland/src/com/replica/replicaisland/
BufferLibrary.java 23 private FixedSizeArray<Grid> mGridList;
28 mGridList = new FixedSizeArray<Grid>(GRID_LIST_SIZE);
36 public void add(Grid grid) {
37 mGridList.add(grid);
48 Grid grid = mGridList.get(x); local
49 grid.generateHardwareBuffers(gl);
58 Grid grid = mGridList.get(x) local
68 Grid grid = mGridList.get(x); local
    [all...]
TiledVertexGrid.java 23 private Grid mTileMap;
59 private Grid generateGrid(int width, int height, int startTileX, int startTileY) {
71 // Check to see if this entire grid is empty tiles. If so, we don't need to do anything.
84 Grid grid = null; local
86 grid = new Grid(tilesAcross, tilesDown, false);
122 grid.set(tileX, tileY, positions, uvs);
127 return grid;
145 Grid grid = generateGrid((int)mWorldPixelWidth, (int)mWorldPixelHeight, 0, 0) local
    [all...]
Grid.java 33 * This version is modified from the original Grid.java (found in
35 * vertex buffers and to insert edges between grid squares for tiling.
37 class Grid {
61 public Grid(int quadsAcross, int quadsDown, boolean useFixedPoint) {
337 DebugLog.i("Grid", "Using Hardware Buffers");
  /external/opencv3/samples/winrt/ImageManipulations/
MainPage.xaml.cpp 116 Grid::SetRow(DescriptionText, 3);
117 Grid::SetColumn(DescriptionText, 0);
119 Grid::SetRow(InputSection, 4);
120 Grid::SetColumn(InputSection, 0);
122 Grid::SetRow(FooterPanel, 2);
123 Grid::SetColumn(FooterPanel, 0);
127 Grid::SetRow(DescriptionText, 1);
128 Grid::SetColumn(DescriptionText, 1);
130 Grid::SetRow(InputSection, 2);
131 Grid::SetColumn(InputSection, 1)
    [all...]
  /frameworks/support/v17/tests/src/android/support/v17/leanback/widget/
GridTest.java 24 * Base class for testing Grid algorithm
29 static class Provider implements Grid.Provider {
83 static String dump(Grid grid) {
85 grid.debugPrint(new PrintWriter(w));
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
ScrolledText.py 10 Most methods calls are inherited from the Text widget; Pack, Grid and
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
33 methods = vars(Pack).keys() + vars(Grid).keys() + vars(Place).keys()
Tix.py 49 # A few useful constants for the Grid widget
253 def grid(self, xsize=0, ysize=0): member in class:Form
255 x = self.tk.call('tixForm', 'grid', self._w)
261 return self.tk.call('tixForm', 'grid', self._w, xsize, ysize)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
ScrolledText.py 10 Most methods calls are inherited from the Text widget; Pack, Grid and
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
33 methods = vars(Pack).keys() + vars(Grid).keys() + vars(Place).keys()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 10 Most methods calls are inherited from the Text widget; Pack, Grid and
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
33 methods = vars(Pack).keys() + vars(Grid).keys() + vars(Place).keys()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 10 Most methods calls are inherited from the Text widget; Pack, Grid and
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
33 methods = vars(Pack).keys() + vars(Grid).keys() + vars(Place).keys()
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
Grid.java 22 * A grid is representation of single or multiple rows layout data structure and algorithm.
23 * Grid is the base class for single row, non-staggered grid and staggered grid.
25 * To use the Grid, user must implement a Provider to create or remove visible item.
26 * Grid maintains a list of visible items. Visible items are created when
29 * removeInvisibleItemsAtEnd() or removeInvisibleItemsAtFront(). Grid's algorithm
32 * invalidateItemsAfter() when it detects item size changed to ask Grid to remove cached
35 abstract class Grid {
44 * When user uses Grid, he should provide count of items an
125 Grid grid; local
    [all...]
SingleRow.java 21 * A Grid with restriction to single row.
23 class SingleRow extends Grid {
StaggeredGrid.java 24 * A dynamic data structure that caches staggered grid position information
41 abstract class StaggeredGrid extends Grid {
46 public static class Location extends Grid.Location {
78 * Returns index of first item (cached or visible) in the staggered grid.
86 * Returns index of last item (cached or visible) in the staggered grid.
232 * This implements the algorithm of layout staggered grid, the method should only be called by
357 * algorithm of layout staggered grid, this method should only be called by
GridLayoutManager.java 259 // whether the grid is staggered.
283 * Called before laid out an item when non-staggered grid can handle pending movements
284 * by skipping "mNumRows" per movement; staggered grid will have to wait the item
320 * Called after laid out an item. Staggered grid should find view on same
494 * The fixed size of each grid item in the secondary direction. This corresponds to
495 * the row height, equal for all rows. Grid items may have variable length
537 * The number of rows in the grid.
547 * Saves grid information of each view.
549 Grid mGrid;
    [all...]
  /build/tools/droiddoc/templates-ds/
trailer.cs 6 <!-- Grid - for dev
22 <link href="<?cs var:toroot ?>assets/js/grid/960.gridder.css" rel="stylesheet" type="text/css">
23 <script src="<?cs var:toroot ?>assets/js/grid/960.gridder.js" type="text/javascript"></script>
  /frameworks/native/opengl/tests/testViewport/src/com/android/test/
TestView.java 76 /** A grid is a topologically rectangular array of vertices.
84 private static class Grid {
98 // constructing the grid. Once createBufferObjects() is called
109 public Grid(int w, int h) {
228 private Grid mGrid;
249 mGrid = new Grid(2, 2);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CubeMapActivity.java 52 private Grid mGrid;
165 private Grid generateTorusGrid(GL gl, int uSteps, int vSteps, float majorRadius, float minorRadius) {
166 Grid grid = new Grid(uSteps + 1, vSteps + 1); local
189 grid.set(i, j, x, y, z, nx, ny, nz);
192 grid.createBufferObjects(gl);
193 return grid;
219 /** A grid is a topologically rectangular array of vertices.
221 * This grid class is customized for the vertex data required for thi
    [all...]
MatrixPaletteRenderer.java 44 private Grid mGrid;
47 /** A grid is a topologically rectangular array of vertices.
49 * This grid class is customized for the vertex data required for this
58 private static class Grid {
78 // constructing the grid. Once createBufferObjects() is called
89 public Grid(int w, int h) {
383 private Grid generateWeightedGrid(GL gl) {
389 Grid grid = new Grid(uSteps + 1, vSteps + 1) local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
Grid.java 30 class Grid {
32 public Grid(int w, int h) {
  /external/deqp/modules/gles3/functional/
es3fVertexTextureTests.cpp 213 * \brief Quad grid class containing position and texture coordinate data.
215 * A quad grid of size S means a grid consisting of S*S quads (S rows and
427 static void setPixelColors (const vector<Vec4>& quadColors, const Rect& region, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst)
429 const int gridSize = grid.getSize();
435 const Vec4 ldru = grid.getQuadLDRU(x, y) * 0.5f + 0.5f; // [-1, 1] -> [0, 1]
458 void computeReference (const typename TexTypeTcuClass<TexType>::t& texture, float lod, const tcu::Sampler& sampler, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst, const Rect& dstRegion)
460 const int gridSize = grid.getSize();
467 const typename TexTypeCoordVec<TexType>::t& coord = grid.getQuadTexCoord(x, y);
472 setPixelColors(quadColors, dstRegion, grid, dst)
    [all...]
  /external/deqp/modules/gles2/functional/
es2fVertexTextureTests.cpp 163 * \brief Quad grid class containing position and texture coordinate data.
165 * A quad grid of size S means a grid consisting of S*S quads (S rows and
331 static void setPixelColors (const vector<Vec4>& quadColors, const Rect& region, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst)
333 const int gridSize = grid.getSize();
339 const Vec4 ldru = grid.getQuadLDRU(x, y) * 0.5f + 0.5f; // [-1, 1] -> [0, 1]
360 void computeReference (const typename TexTypeTcuClass<TexType>::t& texture, float lod, const tcu::Sampler& sampler, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst, const Rect& dstRegion)
362 const int gridSize = grid.getSize();
369 const typename TexTypeCoordVec<TexType>::t& coord = grid.getQuadTexCoord(x, y);
374 setPixelColors(quadColors, dstRegion, grid, dst)
    [all...]
  /build/tools/droiddoc/templates-ds/assets/js/grid/
960.gridder.js 14 * to change the settings before it is re-rendering the grid
22 * proper number of columns that can be used with the specified grid width
29 function Grid() {
65 jQuery('<div class="g-' + e + '">&nbsp;</div>').appendTo("#g-grid").css(d);
85 jQuery('<style type"text/css">#g-setup{position:absolute;top:150px;left:-310px;padding:6px;margin:0;list-style:none;width:320px!important;background-color:#d1cfe6;border:2px solid #a19bd1;z-index:2100; display:none;}#g-setup *{background:transparent!important;border:0!important;color:#58517c!important;font-family:Verdana,Geneva,sans-serif!important;font-size:10px!important;font-weight:normal!important;letter-spacing:normal!important;line-height:1!important;list-style-type:none!important;margin:0!important;padding:0!important;text-decoration:none!important;text-indent:0!important;text-transform:none!important;word-spacing:0!important;z-index:2100!important;}#g-setup .head{font-weight:bold!important;text-align:center;border-bottom:1px solid #7cb267!important;}#g-setup ul{width:150px;float:left!important;}#g-setup li{clear:left;padding:5px!important;}* html #g-setup li{clear:none!important;padding:4px!important;}#g-setup span{float:left!important;width:50px;padding:1px 4px 0 0!important;text-align:right!important;line-height:1.5!important;}#g-setup input,#g-setup select{float:left!important;width:70px;border:1px solid #a19bd1!important;background-color:#e7e6ee!important;padding:2px!important;}#g-setup select{width:77px;padding:0!important;}#g-setup-misc{margin-top:5px!important;clear:left;float:none!important;width:300px!important;border-top:1px solid #7cb267!important;}#g-setup-misc span{line-height:1.1!important;width:200px;}#g-setup-misc input{width:15px;padding:0!important;height:15px;}#g-setup-tab{width:26px;overflow:hidden;position:absolute;top:0;left:100%;margin-left:-26px!important;z-index:2100!important;}#g-setup-tab img{left:0;position:relative;}#g-grid{left:0;position:absolute;z-index:500;top:0;}#g-grid .g-vertical,#g-grid .g-horizontal{position:absolute;z-index:1000;}*:first-child+html #g-grid .g-horizontal,*:first-child+html #g-grid .g-vertical{margin-left:-1px;}#g-grid .g-horizontal{min-height:1px;height:1px;font-size:0;line-height:0;}</style>').appendTo("head");
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 191 // Attempt to lay the views out in a grid with constraints (though not that widgets
193 Grid grid = new Grid(views, left, top); local
195 computeHorizontalConstraints(grid);
196 computeVerticalConstraints(grid);
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsopt.c 58 _cmsInterpFn16 EvalCLUT; // The evaluator for 3D grid
372 _cmsStageCLutData* Grid = (_cmsStageCLutData*) CLUT ->Data;
373 cmsInterpParams* p16 = Grid ->Params;
445 Grid -> Tab.T[index + i] = Value[i];
    [all...]
  /frameworks/base/docs/html/guide/
guide_toc.cs 216 <li><a href="<?cs var:toroot ?>guide/topics/ui/layout/grid.html">
217 <span class="en">Grid Layout</span>
224 <span class="en">Grid View</span>

Completed in 967 milliseconds

1 2