Home
last modified time | relevance | path

Searched refs:arrayIndex (Results 1 – 12 of 12) 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/webkit/Source/WebCore/css/
DCSSSelectorList.cpp66 size_t arrayIndex = 0; in adoptSelectorVector() local
72 move(selector.release(), &m_selectorArray[arrayIndex]); in adoptSelectorVector()
73 ASSERT(!m_selectorArray[arrayIndex].isLastInSelectorList()); in adoptSelectorVector()
75 m_selectorArray[arrayIndex].setNotLastInTagHistory(); in adoptSelectorVector()
76 ++arrayIndex; in adoptSelectorVector()
78 ASSERT(m_selectorArray[arrayIndex - 1].isLastInTagHistory()); in adoptSelectorVector()
80 ASSERT(flattenedSize == arrayIndex); in adoptSelectorVector()
81 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/webkit/Source/JavaScriptCore/qt/api/
Dqscriptvalue.cpp715 QScriptValue QScriptValue::property(quint32 arrayIndex, const ResolveFlags& mode) const in property() argument
717 return QScriptValuePrivate::get(d_ptr->property(arrayIndex, mode)); in property()
761 void QScriptValue::setProperty(quint32 arrayIndex, const QScriptValue& value, const PropertyFlags& … in setProperty() argument
763 d_ptr->setProperty(arrayIndex, QScriptValuePrivate::get(value), flags); in setProperty()
Dqscriptvalue.h94 QScriptValue property(quint32 arrayIndex, const ResolveFlags& mode = ResolvePrototype) const;
97 …void setProperty(quint32 arrayIndex, const QScriptValue& value, const PropertyFlags& flags = KeepE…
Dqscriptvalue_p.h129 … inline QScriptValuePrivate* property(quint32 arrayIndex, const QScriptValue::ResolveFlags& mode);
893 inline QScriptValuePrivate* QScriptValuePrivate::property(quint32 arrayIndex, const QScriptValue::R… in property() argument
895 return property<quint32>(arrayIndex, mode); in property()
972 inline void QScriptValuePrivate::setProperty(quint32 arrayIndex, QScriptValuePrivate* value, const … in setProperty() argument
974 setProperty<quint32>(arrayIndex, value, flags); in setProperty()
/external/webkit/Source/WebCore/platform/graphics/ca/win/
DPlatformCALayerWinInternal.cpp231 for (size_t arrayIndex = layersToSkip; arrayIndex < count; ++arrayIndex) in getSublayers() local
232 …list[arrayIndex - layersToSkip] = PlatformCALayer::platformCALayer(const_cast<void*>(CFArrayGetVal… in getSublayers()
/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/proguard/src/proguard/evaluation/
DProcessor.java145 IntegerValue arrayIndex = stack.ipop(); in visitSimpleInstruction() local
147 stack.push(arrayReference.arrayLoad(arrayIndex, valueFactory)); in visitSimpleInstruction()
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
DProgram.cpp1677 … for (unsigned int arrayIndex = 0; arrayIndex < constantDescription.Elements; arrayIndex++) in defineUniform() local
1688 … std::string structIndex = (constantDescription.Elements > 1) ? ("[" + str(arrayIndex) + "]") : ""; in defineUniform()