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

1 2 3 4 5 6 7 8

  /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/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/public_html/
robots.txt 10 Disallow: /grid
  /sdk/layoutopt/libs/uix/src/resources/rules/
TooManyChildren.rule 7 // - The layout is a list or grid ans has at least 1 child
14 analysis << "A list/grid should have no children declared in node"
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchStackFromBottomTest.java 62 assertEquals("Last item not the last child in the grid",
65 assertEquals("Last item not at the bottom of the grid",
79 assertEquals("Last item not the last child in the grid",
82 assertEquals("Last item not at the bottom of the grid",
96 assertEquals("Last item not the last child in the grid",
99 assertEquals("Last item not at the bottom of the grid",
113 assertEquals("Last item not the last child in the grid",
116 assertEquals("Last item not at the bottom of the grid",
GridTouchStackFromBottomManyTest.java 64 assertEquals("Item zero not the first child in the grid", 0, firstChild.getId());
66 assertEquals("Item zero not at the top of the grid",
80 assertEquals("Grid is not scrolled to the bottom", mGridView.getAdapter().getCount() - 1,
  /frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
grid100.tab 22 * Vector grid[] is in Q15 *
24 * grid[0] = 1.0; *
25 * grid[grid_points+1] = -1.0; *
27 * grid[i] = cos((6.283185307*i)/(2.0*grid_points)); *
  /external/webkit/WebCore/html/
DataGridColumnList.h 20 static PassRefPtr<DataGridColumnList> create(HTMLDataGridElement* grid)
22 return adoptRef(new DataGridColumnList(grid));
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridInHorizontal.java 29 * Exercises a grid in a horizontal linear layout
49 mGridView = (GridView) findViewById(R.id.grid);
GridInHorizontalTest.java 46 assertTrue("Grid has 0 width", mGridView.getMeasuredWidth() > 0);
47 assertTrue("Grid has 0 height", mGridView.getMeasuredHeight() > 0);
GridInVertical.java 29 * Exercises a grid in a vertical linear layout
49 mGridView = (GridView) findViewById(R.id.grid);
GridInVerticalTest.java 46 assertTrue("Grid has 0 width", mGridView.getMeasuredWidth() > 0);
47 assertTrue("Grid has 0 height", mGridView.getMeasuredHeight() > 0);
GridPadding.java 27 * Exercises a grid with padding
43 mGridView = (GridView) findViewById(R.id.grid);
GridVerticalSpacing.java 22 * A grid with vertical spacing between rows
GridVerticalSpacingStackFromBottom.java 22 * A grid with vertical spacing between rows that stacks from the bottom
  /external/webkit/WebKit/chromium/src/js/
devTools.css 5 .data-grid table {
55 .heap-snapshot-view .data-grid {
65 .heap-snapshot-view .data-grid th.count-column {
69 .heap-snapshot-view .data-grid td.count-column {
73 .heap-snapshot-view .data-grid th.size-column {
77 .heap-snapshot-view .data-grid td.size-column {
81 .heap-snapshot-view .data-grid th.countDelta-column {
85 .heap-snapshot-view .data-grid td.countDelta-column {
89 .heap-snapshot-view .data-grid th.sizeDelta-column {
93 .heap-snapshot-view .data-grid td.sizeDelta-column
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
GridScenario.java 71 * @return The initial number of items in the grid as specified by the scenario.
104 * Set the number of items in the grid.
135 * @param position The position in the grid.
155 * Sets whether the sum of the height of the grid items must be at least the
156 * height of the grid view.
174 * Sets the number of columns in the grid.
190 * Sets the spacing between rows in the grid
295 throw new IllegalArgumentException("grid items must combine to be at least " +
320 * Create a view for a grid item. Override this to create a custom view beyond
326 * @return a view for 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...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
GridQuad.java 29 * modified from the original Grid.java (found in the SpriteText package in the
66 GridQuad grid = new GridQuad(generateOrientedQuads); local
67 grid.mWidth = width;
68 grid.mHeight = height;
69 grid.mAnimWidth = width;
70 grid.mAnimHeight = height;
71 grid.mDefaultAspectRatio = width / height;
77 grid.set(0, 0, -widthBy2 + xOffset, -heightBy2 + yOffset, 0.0f, u, v);
78 grid.set(1, 0, widthBy2 + xOffset, -heightBy2 + yOffset, 0.0f, 0.0f, v);
79 grid.set(0, 1, -widthBy2 + xOffset, heightBy2 + yOffset, 0.0f, u, 0.0f)
    [all...]
  /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());
  /frameworks/base/core/java/android/view/animation/
GridLayoutAnimationController.java 28 * A layout animation controller is used to animated a grid layout's children.
32 * X and Y coordinates of the child within a grid.
54 * Animates the children starting from the left of the grid to the right.
59 * Animates the children starting from the right of the grid to the left.
64 * Animates the children starting from the top of the grid to the bottom.
69 * Animates the children starting from the bottom of the grid to the top.
105 * Creates a new grid layout animation controller from external resources.
398 * the view group animated by the grid layout animation controller. These
415 * The number of columns in the view's enclosing grid layout.
420 * The number of rows in the view's enclosing grid layout
    [all...]
  /external/webkit/WebCore/rendering/
RenderFrameSet.cpp 193 void RenderFrameSet::layOutAxis(GridAxis& axis, const Length* grid, int availableLen)
199 if (!grid) {
219 if (grid[i].isFixed()) {
220 gridLayout[i] = max(grid[i].value(), 0);
227 if (grid[i].isPercent()) {
228 gridLayout[i] = max(grid[i].calcValue(availableLen), 0);
235 if (grid[i].isRelative()) {
236 totalRelative += max(grid[i].value(), 1);
249 if (grid[i].isFixed()) {
265 if (grid[i].isPercent())
    [all...]

Completed in 414 milliseconds

1 2 3 4 5 6 7 8