OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Grid
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/opengl/tests/testViewport/src/com/android/test/
TestView.java
76
/** A
grid
is a topologically rectangular array of vertices.
84
private static class
Grid
{
98
// constructing the
grid
. Once createBufferObjects() is called
109
public
Grid
(int w, int h) {
228
private
Grid
mGrid;
249
mGrid = new
Grid
(2, 2);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
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
...]
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
...]
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
Grid.java
30
class
Grid
{
32
public
Grid
(int w, int h) {
/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
...]
/external/chromium/chrome/browser/resources/picasaweb_uploader/js/
upload_page.js
6
* Item used in preview
grid
view.
81
this.previewGrid_ = document.querySelector('.preview-
grid
');
82
cr.ui.
Grid
.decorate(this.previewGrid_);
/external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js
622
* Initialize the file thumbnail
grid
.
625
this.grid_ = this.dialogDom_.querySelector('.thumbnail-
grid
');
626
cr.ui.
Grid
.decorate(this.grid_);
[
all
...]
Completed in 405 milliseconds