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

1 2

  /external/chromium_org/third_party/skia/include/utils/
SkMeshUtils.h 30 size_t indexCount() const { return fIndexCount; }
  /external/skia/include/utils/
SkMeshUtils.h 30 size_t indexCount() const { return fIndexCount; }
  /frameworks/base/libs/hwui/
Patch.h 50 uint32_t indexCount;
DisplayListOp.h     [all...]
  /external/chromium_org/third_party/icu/source/common/
ucol_swp.cpp 312 int indexCount = ds->readUInt16(*((uint16_t*)(inBytes+header.scriptToLeadByte))); // each entry = 2 * uint16
315 4 + (4 * indexCount) + (2 * dataCount),
321 int indexCount = ds->readUInt16(*((uint16_t*)(inBytes+header.leadByteToScript))); // each entry = uint16
324 4 + (2 * indexCount) + (2 * dataCount),
  /external/icu4c/common/
ucol_swp.cpp 310 int indexCount = ds->readUInt16(*((uint16_t*)(inBytes+header.scriptToLeadByte))); // each entry = 2 * uint16
313 4 + (4 * indexCount) + (2 * dataCount),
319 int indexCount = ds->readUInt16(*((uint16_t*)(inBytes+header.leadByteToScript))); // each entry = uint16
322 4 + (2 * indexCount) + (2 * dataCount),
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
Grid.java 56 int indexCount = quadCount * 6;
57 mIndexCount = indexCount;
58 mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyVisualAttributes.java 79 final int indexCount = keyAttr.getIndexCount();
80 for (int i = 0; i < indexCount; i++) {
  /external/chromium_org/third_party/icu/source/test/letest/
xmlreader.cpp 181 int32_t glyphCount = 0, indexCount = 0, positionCount = 0;
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
232 if (glyphCount < charCount || indexCount != glyphCount || positionCount < glyphCount * 2 + 2) {
233 log_err("Test %s: inconsistent input data: charCount = %d, glyphCount = %d, indexCount = %d, positionCount = %d\n",
234 id, charCount, glyphCount, indexCount, positionCount);
letest.cpp 612 int32_t glyphCount = 0, indexCount = 0, positionCount = 0;
679 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
684 if (glyphCount < charCount || indexCount != glyphCount || positionCount < glyphCount * 2 + 2) {
685 log_err("Test %s: inconsistent input data: charCount = %d, glyphCount = %d, indexCount = %d, positionCount = %d\n",
686 id, charCount, glyphCount, indexCount, positionCount);
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkNinePatch.cpp 189 const int indexCount = (numXDivs + 1) * (numYDivs + 1) * 2 * 3;
192 indexCount * sizeof(uint16_t));
207 SkASSERT(n == indexCount);
249 mesh.fIndices, indexCount, p);
  /external/icu4c/test/letest/
xmlreader.cpp 181 int32_t glyphCount = 0, indexCount = 0, positionCount = 0;
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
232 if (glyphCount < charCount || indexCount != glyphCount || positionCount < glyphCount * 2 + 2) {
233 log_err("Test %s: inconsistent input data: charCount = %d, glyphCount = %d, indexCount = %d, positionCount = %d\n",
234 id, charCount, glyphCount, indexCount, positionCount);
letest.cpp 612 int32_t glyphCount = 0, indexCount = 0, positionCount = 0;
679 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
684 if (glyphCount < charCount || indexCount != glyphCount || positionCount < glyphCount * 2 + 2) {
685 log_err("Test %s: inconsistent input data: charCount = %d, glyphCount = %d, indexCount = %d, positionCount = %d\n",
686 id, charCount, glyphCount, indexCount, positionCount);
    [all...]
  /external/skia/src/utils/
SkNinePatch.cpp 189 const int indexCount = (numXDivs + 1) * (numYDivs + 1) * 2 * 3;
192 indexCount * sizeof(uint16_t));
207 SkASSERT(n == indexCount);
249 mesh.fIndices, indexCount, p);
  /frameworks/native/opengl/tests/testViewport/src/com/android/test/
TestView.java 131 int indexCount = quadCount * 6;
132 mIndexCount = indexCount;
133 mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount)
  /external/replicaisland/src/com/replica/replicaisland/
Grid.java 108 int indexCount = quadCount * 6;
109 mIndexCount = indexCount;
110 mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount)
240 public void drawStrip(GL10 gl, boolean useTexture, int startIndex, int indexCount) {
241 int count = indexCount;
242 if (startIndex + indexCount >= mIndexCount) {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MatrixPaletteRenderer.java 111 int indexCount = quadCount * 6;
112 mIndexCount = indexCount;
113 mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount)
CubeMapActivity.java 279 int indexCount = quadCount * 6;
280 mIndexCount = indexCount;
281 mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount)
  /external/chromium_org/third_party/skia/src/gpu/
GrDrawTarget.h 162 * indexCount.
169 * source is reset and likewise for indexCount.
178 * @param indexCount the number of indices to reserve space for. Can be 0.
181 * @param indices will point to reserved index space if indexCount is
182 * non-zero. Illegal to pass NULL if indexCount > 0.
185 int indexCount,
203 * @param indexCount in: hint about how many indices the caller would
212 int* indexCount) const;
229 * @param indexCount the number of indices in the array.
231 void setIndexSourceToArray(const void* indexArray, int indexCount);
    [all...]
  /external/skia/src/gpu/
GrDrawTarget.h 162 * indexCount.
169 * source is reset and likewise for indexCount.
178 * @param indexCount the number of indices to reserve space for. Can be 0.
181 * @param indices will point to reserved index space if indexCount is
182 * non-zero. Illegal to pass NULL if indexCount > 0.
185 int indexCount,
203 * @param indexCount in: hint about how many indices the caller would
212 int* indexCount) const;
229 * @param indexCount the number of indices in the array.
231 void setIndexSourceToArray(const void* indexArray, int indexCount);
    [all...]
  /frameworks/base/core/jni/android/graphics/
Canvas.cpp 577 const int indexCount = meshWidth * meshHeight * 6;
592 storageSize += indexCount * sizeof(uint16_t); // indices[]
660 SkASSERT(indexPtr - indices == indexCount);
667 for (int i = 0; i < indexCount; i++) {
684 indexCount, tmpPaint);
693 int indexCount, const SkPaint* paint) {
698 AutoJavaShortArray indexA(env, jindices, indexIndex + indexCount);
741 indices, indexCount, *paint);
    [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 663 milliseconds

1 2