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

1 2 3

  /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/tests/HwAccelerationTest/src/com/android/test/hwui/
MultiLayersActivity.java 33 LinearLayout grid = new LinearLayout(this); local
34 grid.setOrientation(LinearLayout.VERTICAL);
38 grid.addView(row1, new LinearLayout.LayoutParams(
43 grid.addView(row2, new LinearLayout.LayoutParams(
56 setContentView(grid);
  /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());
  /external/chromium_org/ui/views/corewm/
image_grid_unittest.cc 31 // Size of the images around the grid's border.
39 ImageGrid grid; local
40 grid.SetImages(image_BxB.get(), image_1xB.get(), image_BxB.get(),
44 ImageGrid::TestAPI test_api(&grid);
45 ASSERT_TRUE(grid.top_left_layer() != NULL);
46 ASSERT_TRUE(grid.top_layer() != NULL);
47 ASSERT_TRUE(grid.top_right_layer() != NULL);
48 ASSERT_TRUE(grid.left_layer() != NULL);
49 ASSERT_TRUE(grid.center_layer() != NULL);
50 ASSERT_TRUE(grid.right_layer() != NULL)
131 ImageGrid grid; local
156 ImageGrid grid; local
188 ImageGrid grid; local
236 ImageGrid grid; local
289 ImageGrid grid; local
    [all...]
  /external/chromium_org/cc/base/
region_unittest.cc 261 Region grid; local
264 grid.Union(gfx::Rect(i, j, 1, 1));
266 TEST_CONTAINS(gfx::Rect(10, 10, 9, 9), grid);
267 TEST_NO_CONTAINS(gfx::Rect(10, 10, 9, 8), grid);
268 TEST_NO_CONTAINS(gfx::Rect(10, 11, 9, 8), grid);
269 TEST_NO_CONTAINS(gfx::Rect(10, 10, 8, 9), grid);
270 TEST_NO_CONTAINS(gfx::Rect(11, 10, 8, 9), grid);
276 TEST_CONTAINS(grid, grid);
277 TEST_CONTAINS(h_lines, grid);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
RegionTest.cpp 281 Region grid; local
284 grid.unite(IntRect(i, j, 1, 1));
286 TEST_CONTAINS(IntRect(10, 10, 9, 9), grid);
287 TEST_NO_CONTAINS(IntRect(10, 10, 9, 8), grid);
288 TEST_NO_CONTAINS(IntRect(10, 11, 9, 8), grid);
289 TEST_NO_CONTAINS(IntRect(10, 10, 8, 9), grid);
290 TEST_NO_CONTAINS(IntRect(11, 10, 8, 9), grid);
296 TEST_CONTAINS(grid, grid);
297 TEST_CONTAINS(hLines, grid);
    [all...]
  /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;
53 * Paints the structure (the grid model) of the given GridLayout.
56 * @param layout the grid layout node
58 * @param grid the grid model to be visualized
61 GridModel grid) {
65 for (int row = 0; row < grid.actualRowCount; row++) {
66 int y = grid.getRowY(row);
69 for (int column = 0; column < grid.actualColumnCount; column++)
155 GridModel grid = data.getGrid(); local
266 GridModel grid = data.getGrid(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
window_positioner.cc 35 int grid = kMinimumWindowOffset; local
36 popup_position_offset_from_screen_corner_x = grid;
37 popup_position_offset_from_screen_corner_y = grid;
44 pop_position_offset_increment_x = grid;
45 pop_position_offset_increment_y = grid;
58 return AlignPopupPosition(old_pos, work_area, grid);
59 const gfx::Rect result = SmartPopupPosition(old_pos, work_area, grid);
61 return AlignPopupPosition(result, work_area, grid);
101 int grid) {
131 // be served anymore. Then the next grid position to the right will b
    [all...]
  /external/chromium_org/chrome/browser/ui/window_sizer/
window_sizer_ash_unittest.cc 84 int grid = WindowSizer::kDesktopBorderSize; local
106 WindowSizer::kDesktopBorderSize, grid)),
119 WindowSizer::kDesktopBorderSize * 2, grid),
134 WindowSizer::kDesktopBorderSize * 2, grid),
137 WindowSizer::kDesktopBorderSize, grid)),
152 WindowSizer::kDesktopBorderSize, grid)),
187 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;
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewIcon.java 64 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile(); local
65 setTextSize(TypedValue.COMPLEX_UNIT_SP, grid.iconTextSize);
LauncherAppState.java 188 DeviceProfile grid = mDynamicGrid.getDeviceProfile(); local
189 Utilities.setIconSize(grid.iconSizePx);
190 grid.updateFromConfiguration(context.getResources(), width, height,
192 return grid;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 54 import com.android.ide.common.layout.grid.GridDropHandler;
55 import com.android.ide.common.layout.grid.GridLayoutPainter;
56 import com.android.ide.common.layout.grid.GridModel;
57 import com.android.ide.common.layout.grid.GridModel.ViewData;
84 * The size of the visual regular grid that we snap to (if {@link #sSnapToGrid} is set
98 * grid mode)
133 * Whether the IDE should show diagnostics for debugging the grid layout - including
138 /** Whether the structure (grid model) should be displayed persistently to the user */
141 /** Whether the drop positions should snap to a regular grid */
145 * Whether the grid is edited in "grid mode" where the operations are row/column base
419 GridModel grid = GridModel.get(mRulesEngine, parent, null); local
427 GridModel grid = getGrid(state); local
434 GridModel grid = getGrid(state); local
451 GridModel grid = (GridModel) resizeState.clientData; local
466 GridModel grid = getGrid(state); local
500 GridModel grid = getGrid(state); local
563 GridModel grid = getGrid(state); local
663 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...]
  /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);

Completed in 755 milliseconds

1 2 3