/external/chromium_org/third_party/skia/src/core/ |
D | SkVertState.cpp | 23 const uint16_t* indices = state->fIndices; in TrianglesX() 53 const uint16_t* indices = state->fIndices; in TriangleStripX() 83 const uint16_t* indices = state->fIndices; in TriangleFanX() 98 return fIndices ? TrianglesX : Triangles; in chooseProc() 100 return fIndices ? TriangleStripX : TriangleStrip; in chooseProc() 102 return fIndices ? TriangleFanX : TriangleFan; in chooseProc()
|
D | SkVertState.h | 28 : fIndices(indices) { in VertState() 48 const uint16_t* fIndices; member
|
D | SkDevice.cpp | 94 data.fTexCoords, data.fColors, xmode, data.fIndices, data.fIndexCount, in drawPatch()
|
/external/skia/src/core/ |
D | SkVertState.cpp | 23 const uint16_t* indices = state->fIndices; in TrianglesX() 53 const uint16_t* indices = state->fIndices; in TriangleStripX() 83 const uint16_t* indices = state->fIndices; in TriangleFanX() 98 return fIndices ? TrianglesX : Triangles; in chooseProc() 100 return fIndices ? TriangleStripX : TriangleStrip; in chooseProc() 102 return fIndices ? TriangleFanX : TriangleFan; in chooseProc()
|
D | SkVertState.h | 28 : fIndices(indices) { in VertState() 48 const uint16_t* fIndices; member
|
/external/junit/src/org/junit/internal/ |
D | ArrayComparisonFailure.java | 16 private List<Integer> fIndices= new ArrayList<Integer>(); field in ArrayComparisonFailure 34 fIndices.add(0, index); in addDimension() 43 for (int each : fIndices) { in getMessage()
|
/external/skia/src/utils/ |
D | SkMeshUtils.cpp | 26 fIndices = NULL; in init() 41 fIndices = indices; in init() 46 fIndices = (uint16_t*)(fTex + fTexCount); in init() 51 uint16_t* idx = fIndices; in init()
|
D | SkNinePatch.cpp | 100 const uint16_t* fIndices; member 200 mesh.fIndices = NULL; in DrawMesh() 204 mesh.fIndices = g3x3Indices; in DrawMesh() 208 mesh.fIndices = indices; in DrawMesh() 249 mesh.fIndices, indexCount, p); in DrawMesh()
|
/external/chromium_org/third_party/skia/src/utils/ |
D | SkMeshUtils.cpp | 26 fIndices = NULL; in init() 41 fIndices = indices; in init() 46 fIndices = (uint16_t*)(fTex + fTexCount); in init() 51 uint16_t* idx = fIndices; in init()
|
D | SkPatchUtils.h | 27 uint16_t* fIndices; member 35 , fIndices(NULL) { } in VertexData() 41 SkDELETE_ARRAY(fIndices); in ~VertexData()
|
D | SkPatchUtils.cpp | 232 data->fIndices = SkNEW_ARRAY(uint16_t, data->fIndexCount); in getVertexData() 328 data->fIndices[i] = x * stride + y; in getVertexData() 329 data->fIndices[i + 1] = x * stride + 1 + y; in getVertexData() 330 data->fIndices[i + 2] = (x + 1) * stride + 1 + y; in getVertexData() 331 data->fIndices[i + 3] = data->fIndices[i]; in getVertexData() 332 data->fIndices[i + 4] = data->fIndices[i + 2]; in getVertexData() 333 data->fIndices[i + 5] = (x + 1) * stride + y; in getVertexData()
|
D | SkNinePatch.cpp | 100 const uint16_t* fIndices; member 200 mesh.fIndices = NULL; in DrawMesh() 204 mesh.fIndices = g3x3Indices; in DrawMesh() 208 mesh.fIndices = indices; in DrawMesh() 249 mesh.fIndices, indexCount, p); in DrawMesh()
|
D | SkPatchGrid.cpp | 183 data.fIndices, data.fIndexCount, paint); in draw()
|
/external/skia/samplecode/ |
D | SampleWarp.cpp | 236 uint16_t* fIndices; member in Mesh 240 Mesh::Mesh() : fPts(NULL), fCount(0), fIndices(NULL), fIndexCount(0) {} in Mesh() 244 delete[] fIndices; in ~Mesh() 249 delete[] fIndices; in operator =() 260 delete[] fIndices; in operator =() 262 fIndices = new uint16_t[fIndexCount]; in operator =() 263 memcpy(fIndices, src.fIndices, fIndexCount * sizeof(uint16_t)); in operator =() 281 delete[] fIndices; in init() 283 fIndices = new uint16_t[fIndexCount]; in init() 291 uint16_t* idx = fIndices; in init() [all …]
|
/external/chromium_org/third_party/skia/samplecode/ |
D | SampleWarp.cpp | 236 uint16_t* fIndices; member in Mesh 240 Mesh::Mesh() : fPts(NULL), fCount(0), fIndices(NULL), fIndexCount(0) {} in Mesh() 244 delete[] fIndices; in ~Mesh() 249 delete[] fIndices; in operator =() 260 delete[] fIndices; in operator =() 262 fIndices = new uint16_t[fIndexCount]; in operator =() 263 memcpy(fIndices, src.fIndices, fIndexCount * sizeof(uint16_t)); in operator =() 281 delete[] fIndices; in init() 283 fIndices = new uint16_t[fIndexCount]; in init() 291 uint16_t* idx = fIndices; in init() [all …]
|
/external/chromium_org/third_party/skia/include/utils/ |
D | SkMeshUtils.h | 31 const uint16_t* indices() const { return fIndices; } in indices() 39 uint16_t* fIndices; variable
|
/external/skia/include/utils/ |
D | SkMeshUtils.h | 31 const uint16_t* indices() const { return fIndices; } in indices() 39 uint16_t* fIndices; variable
|
/external/chromium_org/third_party/skia/src/gpu/ |
D | GrInOrderDrawBuffer.h | 147 if (fIndices) { in ~DrawPaths() 148 SkDELETE_ARRAY(fIndices); in ~DrawPaths() 154 uint32_t* fIndices; member
|
D | GrDrawTarget.h | 598 void* indices() const { SkASSERT(this->succeeded()); return fIndices; } in indices() 608 void* fIndices; variable
|
D | GrInOrderDrawBuffer.cpp | 398 dp->fIndices = SkNEW_ARRAY(uint32_t, count); // TODO: Accomplish this without a malloc in onDrawPaths() 399 memcpy(dp->fIndices, indices, sizeof(uint32_t) * count); in onDrawPaths() 548 drawPathsIter->fIndices, in flush()
|
D | GrDrawTarget.cpp | 824 &fIndices); in set() 839 if (fIndices) { in reset() 845 fIndices = NULL; in reset()
|
/external/chromium_org/third_party/skia/src/utils/debugger/ |
D | SkDrawCommand.cpp | 848 fIndices = new uint16_t[indexCount]; in SkDrawVerticesCommand() 849 memcpy(fIndices, indices, indexCount * sizeof(uint16_t)); in SkDrawVerticesCommand() 851 fIndices = NULL; in SkDrawVerticesCommand() 867 delete [] fIndices; in ~SkDrawVerticesCommand() 872 fTexs, fColors, fXfermode, fIndices, in execute()
|
/external/skia/src/utils/debugger/ |
D | SkDrawCommand.cpp | 791 fIndices = new uint16_t[indexCount]; in SkDrawVerticesCommand() 792 memcpy(fIndices, indices, indexCount * sizeof(uint16_t)); in SkDrawVerticesCommand() 794 fIndices = NULL; in SkDrawVerticesCommand() 810 delete [] fIndices; in ~SkDrawVerticesCommand() 815 fTexs, fColors, fXfermode, fIndices, in execute()
|
/external/skia/src/gpu/ |
D | GrDrawTarget.h | 620 void* indices() const { SkASSERT(this->succeeded()); return fIndices; } in indices() 630 void* fIndices; variable
|
D | GrDrawTarget.cpp | 851 &fIndices); in set() 866 if (NULL != fIndices) { in reset() 872 fIndices = NULL; in reset()
|