HomeSort by relevance Sort by last modified time
    Searched refs:mIndices (Results 1 - 7 of 7) sorted by null

  /cts/tests/tests/openglperf/src/android/openglperf/cts/
Sphere.java 41 private ShortBuffer[] mIndices;
67 mIndices = new ShortBuffer[indicesPerVertex];
78 mIndices[i] = ByteBuffer.allocateDirect(mNumIndices[i] * SHORT_SIZE)
110 mIndices[bufferNum].put(indexBuffer, 0, mNumIndices[bufferNum]);
123 mIndices[bufferNum].put(indexBuffer, 0, mNumIndices[bufferNum]);
127 mIndices[i].position(0);
140 return mIndices;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Vertices.java 38 private final short[] mIndices = { 0, 1, 2, 3, 4, 1 };
88 mTexs, 0, null, 0, mIndices, 0, 6, mPaint);
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ApiLookup.java 88 private int[] mIndices;
305 mIndices = offsets;
602 int offset = mIndices[classNumber];
710 // member indices from classCount to mIndices.length.
715 int offset = mIndices[middle];
744 // member indices from classCount to mIndices.length.
746 int high = mIndices.length - 1;
749 int offset = mIndices[middle];
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
FireflyRenderer.java 78 static final short[] mIndices = { 0, 1, 2, 0, 2, 3 };
110 ByteBuffer ibb = ByteBuffer.allocateDirect(mIndices.length * 2); // Short => 2 bytes
113 mIndexBuffer.put(mIndices);
416 gl.glDrawElements(GL10.GL_TRIANGLES, mIndices.length, GL10.GL_UNSIGNED_SHORT,
  /frameworks/base/core/java/android/content/res/
TypedArray.java 43 /*package*/ int[] mIndices;
58 return mIndices[0];
71 return mIndices[1+at];
733 mIndices = indices;
Resources.java 496 array.mIndices[0] = 0;
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
BridgeTypedArray.java 90 // fills TypedArray.mIndices which is used to implement getIndexCount/getIndexAt
100 mIndices = new int[count+1];
101 mIndices[0] = count;
107 mIndices[index++] = i;

Completed in 427 milliseconds