HomeSort by relevance Sort by last modified time
    Searched defs:grid (Results 1 - 25 of 33) sorted by null

1 2

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
grid_tbl.cpp 52 // grid[0] = 1.0;
53 // grid[grid_points+1] = -1.0;
55 // grid[i] = cos((6.283185307*i)/(2.0*grid_points));
95 const Word16 grid[grid_points + 1] = variable
149 [1] grid.tab, UMTS GSM AMR speech codec, R99 - Version 3.2.0, March 2, 2001
  /development/samples/FixedGridLayout/src/com/example/android/fixedgridlayout/
FixedGridLayoutTest.java 15 FixedGridLayout grid = (FixedGridLayout)findViewById(R.id.grid); local
16 grid.setCellWidth(80);
17 grid.setCellHeight(80);
  /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...]
  /frameworks/base/core/java/android/text/method/
CharacterPickerDialog.java 77 GridView grid = (GridView) findViewById(R.id.characterPicker); local
78 grid.setAdapter(new OptionsAdapter(getContext()));
79 grid.setOnItemClickListener(this);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
LayoutAnimation1.java 41 GridView grid = (GridView) findViewById(R.id.grid); local
42 grid.setAdapter(new LayoutAnimation1.AppsAdapter());
LayoutAnimation4.java 41 GridView grid = (GridView) findViewById(R.id.grid); local
42 grid.setAdapter(new AppsAdapter());
LayoutAnimation5.java 41 GridView grid = (GridView) findViewById(R.id.grid); local
42 grid.setAdapter(new AppsAdapter());
LayoutAnimation6.java 41 GridView grid = (GridView) findViewById(R.id.grid); local
42 grid.setAdapter(new AppsAdapter());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/grid/
GridModelTest.java 16 package com.android.ide.common.layout.grid;
  /external/webkit/Source/WebCore/html/
HTMLDataGridColElement.cpp 82 HTMLDataGridElement* grid = findDataGridAncestor(); local
83 if (!grid && column()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridMatch.java 16 package com.android.ide.common.layout.grid;
18 import static com.android.ide.common.layout.grid.GridModel.UNDEFINED;
GridLayoutPainter.java 16 package com.android.ide.common.layout.grid;
20 import static com.android.ide.common.layout.grid.GridModel.UNDEFINED;
52 * Paints the structure (the grid model) of the given GridLayout.
55 * @param layout the grid layout node
57 * @param grid the grid model to be visualized
60 GridModel grid) {
64 for (int row = 0; row < grid.actualRowCount; row++) {
65 int y = grid.getRowY(row);
68 for (int column = 0; column < grid.actualColumnCount; column++)
153 GridModel grid = data.getGrid(); local
252 GridModel grid = data.getGrid(); local
    [all...]
GridDropHandler.java 16 package com.android.ide.common.layout.grid;
31 import static com.android.ide.common.layout.grid.GridModel.UNDEFINED;
53 * GridLayout, computing guidelines, handling drops to edit the grid model, and so on.
65 * @param view the view instance of the grid layout receiving the drop
129 // Fallback: Split existing cell. Also do snap-to-grid.
408 * element into the grid and returns the newly created node.
452 // This is implemented in GridLayout by the following grid, where
591 // TODO: This grid refresh is a little risky because we may have added a new
687 * Called when a drop is completed and we're in grid-editing mode. This will insert
732 * Returns the grid used by the drop handle
    [all...]
GridModel.java 16 package com.android.ide.common.layout.grid;
97 /** The actual count of rows found in the grid */
99 /** The actual count of columns found in the grid */
104 * corresponds to the column positions in the grid
110 * corresponds to the row positions in the grid
144 * Flag which tracks whether we've edited the DOM model, in which case the grid data
150 * An actual instance of a GridLayout object that this grid model corresponds to.
461 // column numbers until we get to the column count of the grid, at which
764 // Return null to indicate that the grid bounds must be computed from view bounds.
772 * @param selectedChildren if null or empty, add the column at the end of the grid,
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/
AssetTileLoader.java 5 package com.jme3.terrain.geomipmap.grid;
43 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Load terrain grid tile: {0}", modelName);
51 Logger.getLogger(this.getClass().getName()).log(Level.WARNING, "Could not load terrain grid tile: {0}", modelName);
54 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Loaded terrain grid tile: {0}", modelName);
FractalTileLoader.java 5 package com.jme3.terrain.geomipmap.grid;
ImageTileLoader.java 5 package com.jme3.terrain.geomipmap.grid;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 51 import com.android.ide.common.layout.grid.GridDropHandler;
52 import com.android.ide.common.layout.grid.GridLayoutPainter;
53 import com.android.ide.common.layout.grid.GridModel;
80 * The size of the visual regular grid that we snap to (if {@link #sSnapToGrid} is set
94 * grid mode)
129 * Whether the IDE should show diagnostics for debugging the grid layout - including
134 /** Whether the structure (grid model) should be displayed persistently to the user */
137 /** Whether the drop positions should snap to a regular grid */
141 * Whether the grid is edited in "grid mode" where the operations are row/column base
394 GridModel grid = new GridModel(mRulesEngine, parent, null); local
410 GridModel grid = getGrid(state); local
417 GridModel grid = getGrid(state); local
434 GridModel grid = (GridModel) resizeState.clientData; local
454 GridModel grid = getGrid(state); local
501 GridModel grid = getGrid(state); local
598 GridModel grid = handler.getGrid(); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
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...]
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...]
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainGridTileLoaderTest.java 22 import com.jme3.terrain.geomipmap.grid.AssetTileLoader;
96 AssetTileLoader grid = new AssetTileLoader(assetManager, "testgrid", "TerrainGrid"); local
97 this.terrain = new TerrainGrid("terrain", 65, 257, grid);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 220 Composite grid = toolkit.createComposite(composite); local
223 grid.setLayout(layout);
224 toolkit.paintBordersFor(grid);
226 ((Section) composite).setClient(grid);
228 return grid;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiTreeBlock.java 89 /** Height hint for the tree view. Helps the grid layout resize properly on smaller screens. */
209 Composite grid = SectionHelper.createGridLayout(section, toolkit, 2); local
211 Tree tree = createTreeViewer(toolkit, grid, managedForm);
212 createButtons(toolkit, grid);
244 private Tree createTreeViewer(FormToolkit toolkit, Composite grid,
248 final Tree tree = toolkit.createTree(grid, SWT.MULTI);
425 private void createButtons(FormToolkit toolkit, Composite grid) {
429 Composite button_grid = SectionHelper.createGridLayout(grid, toolkit, 1);
    [all...]
  /external/opencv/ml/src/
mlsvm.cpp 101 // Param Grid
110 CV_ERROR( CV_StsBadArg, "Lower bound of the grid must be less then the upper one" );
112 CV_ERROR( CV_StsBadArg, "Lower bound of the grid must be positive" );
114 CV_ERROR( CV_StsBadArg, "Grid step must greater then 1" );
125 CvParamGrid grid; local
128 grid.min_val = 0.1;
129 grid.max_val = 500;
130 grid.step = 5; // total iterations = 5
134 grid.min_val = 1e-5;
135 grid.max_val = 0.6
    [all...]

Completed in 768 milliseconds

1 2