Home
last modified time | relevance | path

Searched refs:arrayIndex (Results 1 – 10 of 10) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
DSurface.java91 int arrayIndex = 0; in buildSurface() local
97 vertices[arrayIndex++] = interpolationResult; in buildSurface()
107 arrayIndex = 0; in buildSurface()
110 indices[arrayIndex++] = j + i * uVerticesAmount; in buildSurface()
111 indices[arrayIndex++] = j + i * uVerticesAmount + 1; in buildSurface()
112 indices[arrayIndex++] = j + i * uVerticesAmount + uVerticesAmount; in buildSurface()
113 indices[arrayIndex++] = j + i * uVerticesAmount + 1; in buildSurface()
114 indices[arrayIndex++] = j + i * uVerticesAmount + uVerticesAmount + 1; in buildSurface()
115 indices[arrayIndex++] = j + i * uVerticesAmount + uVerticesAmount; in buildSurface()
127 arrayIndex = 0; in buildSurface()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSSelectorList.cpp65 size_t arrayIndex = 0; in adoptSelectorVector() local
71 memcpy(&m_selectorArray[arrayIndex], currentSelector, sizeof(CSSSelector)); in adoptSelectorVector()
75 ASSERT(!m_selectorArray[arrayIndex].isLastInSelectorList()); in adoptSelectorVector()
77 m_selectorArray[arrayIndex].setNotLastInTagHistory(); in adoptSelectorVector()
78 ++arrayIndex; in adoptSelectorVector()
80 ASSERT(m_selectorArray[arrayIndex - 1].isLastInTagHistory()); in adoptSelectorVector()
82 ASSERT(flattenedSize == arrayIndex); in adoptSelectorVector()
83 m_selectorArray[arrayIndex - 1].setLastInSelectorList(); in adoptSelectorVector()
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
DIpoHelper.java121 int arrayIndex = ((Number) structure.getFieldValue("array_index")).intValue(); in getCurveType() local
125 return Ipo.AC_LOC_X + arrayIndex; in getCurveType()
128 return Ipo.AC_QUAT_W + arrayIndex; in getCurveType()
131 return Ipo.AC_SIZE_X + arrayIndex; in getCurveType()
134 return Ipo.OB_ROT_X + arrayIndex; in getCurveType()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DSubList.cs356 public void CopyTo( T[] array, int arrayIndex ) in CopyTo() argument
361 if ( arrayIndex < 0 ) in CopyTo()
364 if ( arrayIndex + Count > array.Length ) in CopyTo()
369 array[arrayIndex + i] = this[i]; in CopyTo()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DCharInfo.java573 private static int arrayIndex(int i) {
594 int[] arr = new int[arrayIndex(max - 1) + 1];
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
DMesh.java360 ByteBuffer arrayIndex = ByteBuffer.allocate(originalIndex.capacity()); in prepareForAnim() local
362 arrayIndex.put(originalIndex); in prepareForAnim()
363 indices.updateData(arrayIndex); in prepareForAnim()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
Dnv50_ir_lowering_nvc0.cpp706 Value *arrayIndex = i->tex.target.isArray() ? i->getSrc(arg - 1) : NULL; in handleTEX() local
709 i->setSrc(0, arrayIndex); in handleTEX()
714 if (arrayIndex) { in handleTEX()
717 bld.mkCvt(OP_CVT, TYPE_U16, src, sTy, arrayIndex)->saturate = sat; in handleTEX()
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
Dnv50_ir_lowering_nvc0.cpp706 Value *arrayIndex = i->tex.target.isArray() ? i->getSrc(arg - 1) : NULL; in handleTEX() local
709 i->setSrc(0, arrayIndex); in handleTEX()
714 if (arrayIndex) { in handleTEX()
717 bld.mkCvt(OP_CVT, TYPE_U16, src, sTy, arrayIndex)->saturate = sat; in handleTEX()
/external/proguard/src/proguard/evaluation/
DProcessor.java145 IntegerValue arrayIndex = stack.ipop(); in visitSimpleInstruction() local
147 stack.push(arrayReference.arrayLoad(arrayIndex, valueFactory)); in visitSimpleInstruction()
/external/chromium_org/chrome/browser/ui/cocoa/tabs/
Dtab_strip_controller.mm732 NSInteger arrayIndex = 0;
735 if (arrayIndex == index)
738 } else if (arrayIndex == index) {
742 ++arrayIndex;