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

1 2

  /development/samples/GlobalTime/src/com/android/globaltime/
PointCloud.java 48 short[] indices = new short[numPoints]; local
50 indices[i] = (short)i;
53 allocateBuffers(vertices, null, null, null, indices);
Annulus.java 59 short[] indices = new short[2 * 3 * radii]; local
90 indices[iidx++] = (short) (2 * i);
91 indices[iidx++] = (short) (2 * i + 1);
92 indices[iidx++] = (short) (2 * i + 2);
94 indices[iidx++] = (short) (2 * i + 1);
95 indices[iidx++] = (short) (2 * i + 3);
96 indices[iidx++] = (short) (2 * i + 2);
99 allocateBuffers(vertices, null, null, colors, indices);
LatLongSphere.java 35 short[] indices = new short[3 * tris]; local
106 indices[iidx++] = (short) (base);
107 indices[iidx++] = (short) (base + 1);
108 indices[iidx++] = (short) (base + lats + 1);
110 indices[iidx++] = (short) (base + lats);
111 indices[iidx++] = (short) (base);
112 indices[iidx++] = (short) (base + lats + 1);
116 allocateBuffers(vertices, texcoords, normals, colors, indices);
  /cts/tests/tests/graphics/src/android/graphics/cts/
Canvas_VertexModeTest.java 60 short[] indices = { 0, 1, 2, 3, 4, 1 }; local
74 indices,
87 indices,
  /external/chromium/third_party/icu/source/test/letest/
letest.h 39 le_int32 *indices; member in struct:TestResult
cletest.c 43 le_int32 *indices = NULL; local
61 indices = NEW_ARRAY(le_int32, glyphCount + 10);
85 le_getCharIndices(engine, indices, &status);
88 log_err("Calling getCharIndices(indices, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
99 le_getCharIndicesWithBase(engine, indices, 1024, &status);
102 log_err("Calling getCharIndices(indices, 1024, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
120 DELETE_ARRAY(indices);
216 le_int32 biasedIndices[6], indices[6], glyph; local
237 le_getCharIndices(engine, indices, &status);
241 log_err("Could not get glyph, indices and position arrays.\n")
    [all...]
gendata.cpp 165 le_int32 *indices = NULL; local
260 indices = NEW_ARRAY(le_int32, glyphCount);
264 engine->getCharIndices(indices, leStatus);
269 dumpLongs(outputFile, "result-indices", indices, glyphCount);
276 DELETE_ARRAY(indices);
xmlreader.cpp 150 UnicodeString result_indices = UNICODE_STRING_SIMPLE("result-indices");
180 UnicodeString text, glyphs, indices, positions; local
214 indices = element->getText(TRUE);
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
242 DELETE_ARRAY(expected.indices);
  /external/icu4c/layout/
CanonShaping.cpp 15 void CanonShaping::sortMarks(le_int32 *indices, const le_int32 *combiningClasses, le_int32 index, le_int32 limit)
19 le_int32 v = indices[j];
23 if (c >= combiningClasses[indices[i]]) {
27 indices[i + 1] = indices[i];
30 indices[i + 1] = v;
40 le_int32 *indices = LE_NEW_ARRAY(le_int32, charCount); local
46 indices[i] = i;
59 sortMarks(indices, combiningClasses, i, mark);
71 le_int32 index = indices[i]
    [all...]
  /external/icu4c/test/letest/
letest.h 39 le_int32 *indices; member in struct:TestResult
cletest.c 43 le_int32 *indices = NULL; local
61 indices = NEW_ARRAY(le_int32, glyphCount + 10);
85 le_getCharIndices(engine, indices, &status);
88 log_err("Calling getCharIndices(indices, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
99 le_getCharIndicesWithBase(engine, indices, 1024, &status);
102 log_err("Calling getCharIndices(indices, 1024, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
120 DELETE_ARRAY(indices);
216 le_int32 biasedIndices[6], indices[6], glyph; local
237 le_getCharIndices(engine, indices, &status);
241 log_err("Could not get glyph, indices and position arrays.\n")
    [all...]
gendata.cpp 165 le_int32 *indices = NULL; local
260 indices = NEW_ARRAY(le_int32, glyphCount);
264 engine->getCharIndices(indices, leStatus);
269 dumpLongs(outputFile, "result-indices", indices, glyphCount);
276 DELETE_ARRAY(indices);
xmlreader.cpp 150 UnicodeString result_indices = UNICODE_STRING_SIMPLE("result-indices");
180 UnicodeString text, glyphs, indices, positions; local
214 indices = element->getText(TRUE);
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
242 DELETE_ARRAY(expected.indices);
  /external/skia/include/utils/
SkMeshUtils.h 20 bool init(SkPoint tex[], uint16_t indices[],
24 const uint16_t* indices() const { return fIndices; } function in class:SkMeshIndices
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextControllerCoreText.cpp 80 Vector<CFIndex, 16> indices; local
83 indices.append(r);
92 m_glyphCount = indices.size();
95 std::swap(indices[r], indices[end]);
98 CFDataAppendBytes(m_coreTextIndicesData.get(), reinterpret_cast<const UInt8*>(indices.data()), m_glyphCount * sizeof(CFIndex));
  /external/freetype/src/psaux/
t1cmap.h 75 FT_UShort* indices; member in struct:T1_CMapCustomRec_
  /frameworks/base/tools/aapt/
StringPool.h 44 entry(const entry& o) : value(o.value), offset(o.offset), indices(o.indices) { }
48 Vector<size_t> indices; member in struct:StringPool::entry
132 // Array of indices into mEntries, in the order they were
140 // Mapping from indices in mEntryArray to indices in mValues.
146 // pool, mapping to indices in mEntries.
StringPool.cpp 95 ent.indices.add(pos);
366 ent.indices.clear();
367 ent.indices.add(i);
397 const Vector<size_t>* indices = offsetsForString(val); local
398 ssize_t res = indices != NULL && indices->size() > 0 ? indices->itemAt(0) : -1;
410 return &mEntries[mEntryArray[pos]].indices;
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_InstanceNonce.c 100 static int indices[] = { 0, 50, 99 }; local
129 (*env)->SetObjectArrayElement(env, result, indices[i], s);
android_jni_cts_StaticNonce.c 99 static int indices[] = { 0, 50, 99 }; local
128 (*env)->SetObjectArrayElement(env, result, indices[i], s);
  /external/junit/src/junit/swingui/
TestTreeModel.java 72 int[] indices= {index}; local
74 TreeModelEvent event= new TreeModelEvent(this, path, indices, changedChildren);
  /external/skia/src/utils/
SkNinePatch.cpp 35 static int fillIndices(uint16_t indices[], int xCount, int yCount) {
36 uint16_t* startIndices = indices;
41 *indices++ = n;
42 *indices++ = n + xCount + 2;
43 *indices++ = n + 1;
45 *indices++ = n;
46 *indices++ = n + xCount + 1;
47 *indices++ = n + xCount + 2;
53 return indices - startIndices;
173 // allocate 2 times, one for verts, one for texs, plus indices
178 uint16_t* indices = (uint16_t*)(texs + vCount); local
    [all...]
  /external/webkit/WebCore/wml/
WMLSelectElement.cpp 417 Vector<unsigned> indices; local
419 return indices;
430 // Spec: Remove all non-integer indices from the value. Remove all out-of-range indices
436 // Spec: Remove duplicate indices.
437 if (indices.find(parsedValue) == notFound)
438 indices.append(parsedValue);
441 return indices;
446 Vector<unsigned> indices; local
448 return indices;
    [all...]
  /frameworks/base/opengl/tests/tritex/
tritex.cpp 249 GLushort* indices = (GLushort*)malloc(quads*sizeof(quadIndices)); local
251 memcpy(indices+(sizeof(quadIndices)/sizeof(indices[0]))*i, quadIndices, sizeof(quadIndices));
271 glDrawElements(GL_TRIANGLES, nelem*quads, GL_UNSIGNED_SHORT, indices);
275 free(indices);
  /libcore/luni/src/main/java/java/text/
Bidi.java 354 * @return the new line Bidi object. In this new object, the indices will
541 int[] indices = NativeBidi.ubidi_reorderVisual(realLevels, count); local
545 result.add(objects[objectStart + indices[i]]);

Completed in 1201 milliseconds

1 2