HomeSort by relevance Sort by last modified time
    Searched refs:indices (Results 251 - 275 of 1097) sorted by null

<<11121314151617181920>>

  /frameworks/base/tools/aapt/
StringPool.cpp 181 ent.indices.add(pos);
300 newEntries.editItemAt(newOffset).indices.clear();
306 // Update the indices to include this new position.
307 newEntries.editItemAt(newOffset).indices.add(i);
340 mValues.add(ent.value, ent.indices[0]);
568 const Vector<size_t>* indices = offsetsForString(val); local
569 ssize_t res = indices != NULL && indices->size() > 0 ? indices->itemAt(0) : -1;
581 return &mEntries[mEntryArray[pos]].indices;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 355 final List<Integer> indices = new ArrayList<Integer>(); local
362 // Adjust existing indices
363 for (int i = 0, n = indices.size(); i < n; i++) {
364 int idx = indices.get(i);
366 indices.set(i, idx + 1);
370 indices.add(index);
377 // Adjust existing indices
378 for (int i = 0, n = indices.size(); i < n; i++) {
379 int idx = indices.get(i);
381 indices.set(i, idx - 1)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 115 check(op.indices[0].disp < temps.size());
116 return temps[op.indices[0].disp];
119 check(op.indices[0].disp < outputs.size());
120 return outputs[op.indices[0].disp];
151 // TODO: is this correct, or are incorrectly swapping the two indices in the GS case?
152 check(op.indices[op.num_indices - 1].disp < inputs.size());
153 s = inputs[op.indices[op.num_indices - 1].disp];
157 s.DimensionIndex = op.indices[0].disp;
165 s = ureg_src_register(TGSI_FILE_CONSTANT, (unsigned)op.indices[1].disp);
167 s.DimensionIndex = op.indices[0].disp
    [all...]
  /external/eigen/doc/
eigen_navtree_hacks.js 11 var indices = new Array();
12 indices[0] = 0;
13 indices[1] = 0;
23 indices[levelTag-1]+=1;
24 var prefix = indices[0];
26 prefix+="."+indices[1];
32 indices[l] = 0;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 115 check(op.indices[0].disp < temps.size());
116 return temps[op.indices[0].disp];
119 check(op.indices[0].disp < outputs.size());
120 return outputs[op.indices[0].disp];
151 // TODO: is this correct, or are incorrectly swapping the two indices in the GS case?
152 check(op.indices[op.num_indices - 1].disp < inputs.size());
153 s = inputs[op.indices[op.num_indices - 1].disp];
157 s.DimensionIndex = op.indices[0].disp;
165 s = ureg_src_register(TGSI_FILE_CONSTANT, (unsigned)op.indices[1].disp);
167 s.DimensionIndex = op.indices[0].disp
    [all...]
  /external/fonttools/Lib/fontTools/
subset.py 58 indices = self.intersect(glyphs)
60 return indices
88 indices = _uniq_sort(
92 self.remap(indices)
93 return indices
115 indices = self.Coverage.intersect(cur_glyphs)
116 _set_update(s.glyphs, *(self.Sequence[i].Substitute for i in indices))
120 indices = self.Coverage.subset(s.glyphs)
121 self.Sequence = [self.Sequence[i] for i in indices]
123 indices = [i for i,seq in enumerate(self.Sequence
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_noop.c 370 const GLvoid * indices)
376 const GLvoid * indices, GLint basevertex)
385 const GLvoid * indices)
391 const GLvoid ** indices, GLsizei primcount)
399 const GLvoid * indices,
407 const GLvoid * const *indices,
  /external/mesa3d/src/mesa/vbo/
vbo_noop.c 370 const GLvoid * indices)
376 const GLvoid * indices, GLint basevertex)
385 const GLvoid * indices)
391 const GLvoid ** indices, GLsizei primcount)
399 const GLvoid * indices,
407 const GLvoid * const *indices,
  /external/svox/pico/lib/
picocep.c 202 /*---------------------- indices --------------------------------------*/
203 /* index buffer to hold indices as input for smoothing */
207 picoos_uint16 activeEndPos; /* end position of indices to be considered */
255 picoos_uint16 *indices, picoos_uint16 b, picoos_uint16 N,
258 static void getDirect(picokpdf_PdfMUL pdf, picoos_uint16 *indices,
262 static void getVoiced(picokpdf_PdfMUL pdf, picoos_uint16 *indices,
308 /* indices* */
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkTrackDevice.h 145 const uint16_t indices[], int indexCount,
148 INHERITED::drawVertices(dummy1, dummy2, vertexCount,verts, texs,colors, xmode, indices,
  /external/iproute2/examples/diffserv/
Edge1 33 $TC qdisc add $EGDEV handle 1:0 root dsmark indices 64 set_tc_index
  /external/iproute2/testsuite/tests/
cls-testbed.t 43 dsmark indices 64 default_index 1 set_tc_index
  /external/skia/experimental/PdfViewer/
SkTrackDevice.h 145 const uint16_t indices[], int indexCount,
148 INHERITED::drawVertices(dummy1, dummy2, vertexCount,verts, texs,colors, xmode, indices,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_llvm.c 506 LLVMValueRef indices = local
510 &indices, 1, "");
533 /* lp_build_printf(gallivm, "vbuf index = %d, stride is %d\n", indices, stride);*/
587 LLVMValueRef indices[3]; local
589 indices[0] = lp_build_const_int32(gallivm, 0);
590 indices[1] = index;
591 indices[2] = lp_build_const_int32(gallivm, 0);
597 data_ptr = LLVMBuildGEP(builder, data_ptr, indices, 3, "");
741 LLVMValueRef indices[2]; local
747 indices[0]
963 LLVMValueRef indices[3]; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm.c 506 LLVMValueRef indices = local
510 &indices, 1, "");
533 /* lp_build_printf(gallivm, "vbuf index = %d, stride is %d\n", indices, stride);*/
587 LLVMValueRef indices[3]; local
589 indices[0] = lp_build_const_int32(gallivm, 0);
590 indices[1] = index;
591 indices[2] = lp_build_const_int32(gallivm, 0);
597 data_ptr = LLVMBuildGEP(builder, data_ptr, indices, 3, "");
741 LLVMValueRef indices[2]; local
747 indices[0]
963 LLVMValueRef indices[3]; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
TokenSource.pm 26 computed from a CharStream; it only store indices into the char stream.
  /external/chromium_org/gpu/command_buffer/client/
vertex_array_object_manager.h 70 const void* indices,
  /external/chromium_org/mojo/apps/js/bindings/gl/
context.h 44 uint64_t indices);
  /external/chromium_org/third_party/skia/src/gpu/
GrBufferAllocPool.h 296 * Returns a block of memory to hold indices. A buffer designated to hold
297 * the indices is given to the caller. The buffer may or may not be locked.
304 * Once unmap on the pool is called the indices are guaranteed to be in the
308 * @param indexCount number of indices to allocate space for
309 * @param buffer returns the index buffer that will hold the indices.
318 * Shortcut to make space and then write indices into the made space.
321 const void* indices,
326 * Gets the number of indices that can be added to the current IB without
328 * makeSpace completely exhausted a IB then the returned number of indices
335 * Gets the number of indices that can fit in a preallocated index buffer
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-40931.js 31 // indices which should only contain the numeric indices corresponding to the
  /external/deqp/framework/opengl/simplereference/
sglrGLContext.cpp 795 void GLContext::drawElements (deUint32 mode, int count, deUint32 type, const void *indices)
797 m_wrapper->glDrawElements(mode, count, type, indices);
800 void GLContext::drawElementsInstanced (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount)
802 m_wrapper->glDrawElementsInstanced(mode, count, type, indices, instanceCount);
805 void GLContext::drawElementsBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int baseVertex)
807 m_wrapper->glDrawElementsBaseVertex(mode, count, type, indices, baseVertex);
810 void GLContext::drawElementsInstancedBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount, int baseVertex)
812 m_wrapper->glDrawElementsInstancedBaseVertex(mode, count, type, indices, instanceCount, baseVertex);
815 void GLContext::drawRangeElements (deUint32 mode, deUint32 start, deUint32 end, int count, deUint32 type, const void *indices)
817 m_wrapper->glDrawRangeElements(mode, start, end, count, type, indices);
    [all...]
  /external/proguard/src/proguard/gui/
ClassPathPanel.java 281 private void setFiltersAt(int[] indices)
283 for (int index = indices.length - 1; index >= 0; index--)
285 ClassPathEntry entry = (ClassPathEntry)listModel.get(indices[index]);
294 list.setSelectedIndices(indices);
  /external/skia/src/gpu/
GrBufferAllocPool.h 296 * Returns a block of memory to hold indices. A buffer designated to hold
297 * the indices is given to the caller. The buffer may or may not be locked.
304 * Once unmap on the pool is called the indices are guaranteed to be in the
308 * @param indexCount number of indices to allocate space for
309 * @param buffer returns the index buffer that will hold the indices.
318 * Shortcut to make space and then write indices into the made space.
321 const void* indices,
326 * Gets the number of indices that can be added to the current IB without
328 * makeSpace completely exhausted a IB then the returned number of indices
335 * Gets the number of indices that can fit in a preallocated index buffer
    [all...]
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 356 const GLushort indices[] = { 0, 1, 2, 0, 2, 3 };
361 int nelem = sizeof(indices)/sizeof(indices[0]);
363 glDrawElements(GL_TRIANGLES, nelem, GL_UNSIGNED_SHORT, indices);
  /development/samples/Compass/src/com/example/android/compass/
CompassActivity.java 177 byte indices[] = { 0, 1, 0, 2, 0, 3 };
200 mIndexBuffer = ByteBuffer.allocateDirect(indices.length);
201 mIndexBuffer.put(indices);

Completed in 863 milliseconds

<<11121314151617181920>>