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

  /frameworks/base/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));
94 extern const Word16 grid[grid_points + 1] = variable
148 [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++)
152 GridModel grid = data.getGrid(); local
251 GridModel grid = data.getGrid(); local
    [all...]
GridDropHandler.java 16 package com.android.ide.common.layout.grid;
33 import static com.android.ide.common.layout.grid.GridModel.UNDEFINED;
55 * GridLayout, computing guidelines, handling drops to edit the grid model, and so on.
67 * @param view the view instance of the grid layout receiving the drop
130 // Fallback: Split existing cell. Also do snap-to-grid.
411 * element into the grid and returns the newly created node.
455 // This is implemented in GridLayout by the following grid, where
596 // TODO: This grid refresh is a little risky because we may have added a new
691 * Called when a drop is completed and we're in grid-editing mode. This will insert
738 * Returns the grid used by the drop handle
    [all...]
GridModel.java 16 package com.android.ide.common.layout.grid;
88 /** The actual count of rows found in the grid */
90 /** The actual count of columns found in the grid */
95 * corresponds to the column positions in the grid
101 * corresponds to the row positions in the grid
135 * Flag which tracks whether we've edited the DOM model, in which case the grid data
141 * An actual instance of a GridLayout object that this grid model corresponds to.
401 // column numbers until we get to the column count of the grid, at which
700 // Return null to indicate that the grid bounds must be computed from view bounds.
708 * @param selectedChildren if null or empty, add the column at the end of the grid,
    [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...]
  /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/common/layout/
GridLayoutRule.java 49 import com.android.ide.common.layout.grid.GridDropHandler;
50 import com.android.ide.common.layout.grid.GridLayoutPainter;
51 import com.android.ide.common.layout.grid.GridModel;
78 * The size of the visual regular grid that we snap to (if {@link #sSnapToGrid} is set
92 * grid mode)
127 * Whether the IDE should show diagnostics for debugging the grid layout - including
132 /** Whether the structure (grid model) should be displayed persistently to the user */
135 /** Whether the drop positions should snap to a regular grid */
139 * Whether the grid is edited in "grid mode" where the operations are row/column base
372 GridModel grid = new GridModel(mRulesEngine, parent, null); local
387 GridModel grid = getGrid(state); local
394 GridModel grid = getGrid(state); local
411 GridModel grid = (GridModel) resizeState.clientData; local
477 GridModel grid = getGrid(state); local
    [all...]
  /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);
421 private void createButtons(FormToolkit toolkit, Composite grid) {
425 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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 192 // Attempt to lay the views out in a grid with constraints (though not that widgets
194 Grid grid = new Grid(views, left, top); local
196 computeHorizontalConstraints(grid);
197 computeVerticalConstraints(grid);
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 252 private BufferedImage grid; field in class:ScreenViewer.LoupeViewer
304 grid = new BufferedImage(width + zoom + 1, height + zoom + 1,
307 g2 = grid.createGraphics();
309 g2 = grid.createGraphics();
311 g2.fillRect(0, 0, grid.getWidth(), grid.getHeight());
336 g.drawImage(grid, clip.x - clip.x % zoom, clip.y - clip.y % zoom, null);
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 344 milliseconds