HomeSort by relevance Sort by last modified time
    Searched defs:grid (Results 1 - 25 of 66) 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/chromium_org/ui/wm/core/
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...]
  /developers/build/prebuilts/gradle/FragmentTransition/Application/src/main/java/com/example/android/fragmenttransition/
FragmentTransitionFragment.java 46 // This is the adapter we use to populate the grid.
54 GridView grid = (GridView) view.findViewById(R.id.grid); local
55 grid.setAdapter(mAdapter);
56 grid.setOnItemClickListener(this);
  /developers/samples/android/ui/transition/FragmentTransition/Application/src/main/java/com/example/android/fragmenttransition/
FragmentTransitionFragment.java 46 // This is the adapter we use to populate the grid.
54 GridView grid = (GridView) view.findViewById(R.id.grid); local
55 grid.setAdapter(mAdapter);
56 grid.setOnItemClickListener(this);
  /development/samples/browseable/FragmentTransition/src/com.example.android.fragmenttransition/
FragmentTransitionFragment.java 46 // This is the adapter we use to populate the grid.
54 GridView grid = (GridView) view.findViewById(R.id.grid); local
55 grid.setAdapter(mAdapter);
56 grid.setOnItemClickListener(this);
  /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/llvm/test/tools/llvm-cov/Inputs/
test.cpp 6 double grid[10][10] = {0}; variable
29 grid[ii][jj] = (ii+1) * (jj+1);
72 return a + 8 + grid[2][3] + len;
  /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/platform/geometry/
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...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintFlagsDrawFilterTest.java 118 Bitmap grid = Bitmap.createBitmap(kWidth, kHeight, Config.ARGB_8888); local
121 grid.setPixel(i, j, colors[k]);
136 canvas.drawBitmap(grid, 0, 0, simplePaint);
142 canvas.drawBitmap(grid, 0, 0, filterBitmapPaint);
150 canvas.drawBitmap(grid, 0, 0, filterBitmapPaint);
157 canvas.drawBitmap(grid, 0, 0, simplePaint);
  /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...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppState.java 204 DeviceProfile grid = mDynamicGrid.getDeviceProfile(); local
205 grid.updateFromConfiguration(context, context.getResources(), width, height,
207 return grid;
246 public void onAvailableSizeChanged(DeviceProfile grid) {
247 Utilities.setIconSize(grid.iconSizePx);
PagedViewWidget.java 84 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile(); local
87 name.setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
91 dims.setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
123 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile(); local
135 int hSpan = Math.min(cellSpan[0], (int) grid.numColumns);
136 int vSpan = Math.min(cellSpan[1], (int) grid.numRows);
SearchDropTargetBar.java 117 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile(); local
118 mBarHeight = grid.searchBarSpaceHeightPx;
  /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...]

Completed in 502 milliseconds

1 2 3