Home
last modified time | relevance | path

Searched refs:indexInfo (Results 1 – 5 of 5) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateComparison.java101 Set<R2<String, String>> indexInfo = new TreeSet<R2<String, String>>(ENG); in main() local
119 addToIndex(indexInfo, "ERROR1.6 ", locale, localeName); in main()
130 addToIndex(indexInfo, "ERROR1.7 ", locale, localeName); in main()
147 addToIndex(indexInfo, "NEW ", locale, localeName); in main()
150 addToIndex(indexInfo, "DELETED ", locale, localeName); in main()
177 addToIndex(indexInfo, "ERROR ", locale, localeName); in main()
353 addToIndex(indexInfo, "", locale, localeName, fileCounter); in main()
443 for (R2<String, String> indexPair : indexInfo) { in main()
476 …private static void addToIndex(Set<R2<String, String>> indexInfo, String title, final String local… in addToIndex() argument
478 addToIndex(indexInfo, title, locale, localeName, null); in addToIndex()
[all …]
/external/swiftshader/src/OpenGL/libGLESv2/
DContext.cpp3041 … GLuint start, GLuint end, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo) in applyIndexBuffer() argument
3043 … end, count, getCurrentVertexArray()->getElementArrayBuffer(), indices, indexInfo, isPrimitiveRest… in applyIndexBuffer()
3047 device->setIndexBuffer(indexInfo->indexBuffer); in applyIndexBuffer()
3668 TranslatedIndexData indexInfo(primitiveCount); in drawElements() local
3669 GLenum err = applyIndexBuffer(indices, start, end, count, mode, type, &indexInfo); in drawElements()
3681 GLsizei vertexCount = indexInfo.maxIndex - indexInfo.minIndex + 1; in drawElements()
3682 err = applyVertexBuffer(-(int)indexInfo.minIndex, indexInfo.minIndex, vertexCount, i); in drawElements()
3704 device->drawIndexedPrimitive(primitiveType, indexInfo.indexOffset, indexInfo.primitiveCount); in drawElements()
3708 transformFeedback->addVertexOffset(indexInfo.primitiveCount * verticesPerPrimitive); in drawElements()
DContext.h711 …GLuint start, GLuint end, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo);
/external/swiftshader/src/OpenGL/libGLES_CM/
DContext.cpp2065 …uffer(const void *indices, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo) in applyIndexBuffer() argument
2067 … = mIndexDataManager->prepareIndexData(type, count, mState.elementArrayBuffer, indices, indexInfo); in applyIndexBuffer()
2071 device->setIndexBuffer(indexInfo->indexBuffer); in applyIndexBuffer()
2780 TranslatedIndexData indexInfo; in drawElements() local
2781 GLenum err = applyIndexBuffer(indices, count, mode, type, &indexInfo); in drawElements()
2787 GLsizei vertexCount = indexInfo.maxIndex - indexInfo.minIndex + 1; in drawElements()
2788 err = applyVertexBuffer(-(int)indexInfo.minIndex, indexInfo.minIndex, vertexCount); in drawElements()
2798 device->drawIndexedPrimitive(primitiveType, indexInfo.indexOffset, primitiveCount); in drawElements()
DContext.h587 …ffer(const void *indices, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo);