HomeSort by relevance Sort by last modified time
    Searched refs:dstCopy (Results 1 - 25 of 30) sorted by null

1 2

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputPointersTests.java 157 final InputPointers dstCopy = new InputPointers(DEFAULT_CAPACITY);
158 dstCopy.copy(dst);
182 dstCopy.getXCoordinates(), startPos, dst.getXCoordinates(), startPos, dstLength);
184 dstCopy.getYCoordinates(), startPos, dst.getYCoordinates(), startPos, dstLength);
186 dstCopy.getPointerIds(), startPos, dst.getPointerIds(), startPos, dstLength);
188 dstCopy.getTimes(), startPos, dst.getTimes(), startPos, dstLength);
196 dstCopy.getXCoordinates(), startPos, dst.getXCoordinates(), startPos, dstLength);
198 dstCopy.getYCoordinates(), startPos, dst.getYCoordinates(), startPos, dstLength);
200 dstCopy.getPointerIds(), startPos, dst.getPointerIds(), startPos, dstLength);
202 dstCopy.getTimes(), startPos, dst.getTimes(), startPos, dstLength)
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgram.cpp 99 const GrDeviceCoordTexture* dstCopy,
120 if (NULL != dstCopy) {
123 static_cast<GrGLfloat>(dstCopy->offset().fX),
124 static_cast<GrGLfloat>(dstCopy->offset().fY));
126 1.f / dstCopy->texture()->width(),
127 1.f / dstCopy->texture()->height());
128 GrGLTexture* texture = static_cast<GrGLTexture*>(dstCopy->texture());
GrGLProgramDesc.cpp 45 const GrDeviceCoordTexture* dstCopy,
176 SkASSERT(NULL != dstCopy || gpu->caps()->dstReadInShaderSupport());
178 if (NULL != dstCopy) {
179 dstCopyTexture = dstCopy->texture();
GrGpuGL_program.cpp 213 bool GrGpuGL::flushGraphicsState(DrawType type, const GrDeviceCoordTexture* dstCopy) {
243 dstCopy,
273 dstCopy,
GrGLProgram.h 161 const GrDeviceCoordTexture* dstCopy, // can be NULL
GrGLProgramDesc.h 73 const GrDeviceCoordTexture* dstCopy,
GrGLShaderBuilder.cpp 391 GrGLShaderBuilder::DstReadKey GrGLShaderBuilder::KeyForDstRead(const GrTexture* dstCopy,
397 SkASSERT(NULL != dstCopy);
398 if (!caps.textureSwizzleSupport() && GrPixelConfigIsAlphaOnly(dstCopy->config())) {
402 if (kTopLeft_GrSurfaceOrigin == dstCopy->origin()) {
    [all...]
  /external/skia/src/gpu/gl/
GrGLProgram.cpp 99 const GrDeviceCoordTexture* dstCopy,
120 if (NULL != dstCopy) {
123 static_cast<GrGLfloat>(dstCopy->offset().fX),
124 static_cast<GrGLfloat>(dstCopy->offset().fY));
126 1.f / dstCopy->texture()->width(),
127 1.f / dstCopy->texture()->height());
128 GrGLTexture* texture = static_cast<GrGLTexture*>(dstCopy->texture());
GrGLProgramDesc.cpp 45 const GrDeviceCoordTexture* dstCopy,
176 SkASSERT(NULL != dstCopy || gpu->caps()->dstReadInShaderSupport());
178 if (NULL != dstCopy) {
179 dstCopyTexture = dstCopy->texture();
GrGpuGL_program.cpp 213 bool GrGpuGL::flushGraphicsState(DrawType type, const GrDeviceCoordTexture* dstCopy) {
243 dstCopy,
273 dstCopy,
GrGLProgram.h 161 const GrDeviceCoordTexture* dstCopy, // can be NULL
GrGLProgramDesc.h 73 const GrDeviceCoordTexture* dstCopy,
  /external/chromium_org/third_party/skia/src/gpu/
GrGpu.h 365 const GrDeviceCoordTexture* dstCopy,
478 virtual bool flushGraphicsState(DrawType, const GrDeviceCoordTexture* dstCopy) = 0;
490 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
493 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
GrDrawTarget.h 512 const GrDeviceCoordTexture* dstCopy) {
513 this->onDrawPath(path, fill, dstCopy);
522 const GrDeviceCoordTexture* dstCopy) {
523 this->onDrawPaths(pathCount, paths, transforms, fill, stroke, dstCopy);
    [all...]
GrGpu.cpp 343 bool GrGpu::setupClipAndFlushState(DrawType type, const GrDeviceCoordTexture* dstCopy,
350 if (!this->flushGraphicsState(type, dstCopy)) {
409 const GrDeviceCoordTexture* dstCopy) {
415 if (!this->setupClipAndFlushState(kDrawPath_DrawType, dstCopy, &are, NULL)) {
425 const GrDeviceCoordTexture* dstCopy) {
431 if (!this->setupClipAndFlushState(kDrawPaths_DrawType, dstCopy, &are, NULL)) {
GrDrawTarget.cpp 416 bool GrDrawTarget::setupDstReadIfNecessary(GrDeviceCoordTexture* dstCopy, const SkRect* drawBounds) {
455 dstCopy->setTexture(ast.texture());
456 dstCopy->setOffset(copyRect.fLeft, copyRect.fTop);
543 GrDeviceCoordTexture dstCopy;
544 if (!this->setupDstReadIfNecessary(&dstCopy, &devBounds)) {
548 this->onDrawPath(path, fill, dstCopy.texture() ? &dstCopy : NULL);
572 GrDeviceCoordTexture dstCopy;
573 if (!this->setupDstReadIfNecessary(&dstCopy, &devBounds)) {
578 dstCopy.texture() ? &dstCopy : NULL)
    [all...]
GrInOrderDrawBuffer.cpp 443 SkPath::FillType fill, const GrDeviceCoordTexture* dstCopy) {
455 if (NULL != dstCopy) {
456 cp->fDstCopy = *dstCopy;
464 const GrDeviceCoordTexture* dstCopy) {
487 if (NULL != dstCopy) {
488 dp->fDstCopy = *dstCopy;
632 const GrDeviceCoordTexture* dstCopy =
636 dstCopy);
    [all...]
GrInOrderDrawBuffer.h 157 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
160 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
  /external/skia/src/gpu/
GrGpu.h 365 const GrDeviceCoordTexture* dstCopy,
478 virtual bool flushGraphicsState(DrawType, const GrDeviceCoordTexture* dstCopy) = 0;
490 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
493 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
GrDrawTarget.h 512 const GrDeviceCoordTexture* dstCopy) {
513 this->onDrawPath(path, fill, dstCopy);
522 const GrDeviceCoordTexture* dstCopy) {
523 this->onDrawPaths(pathCount, paths, transforms, fill, stroke, dstCopy);
    [all...]
GrGpu.cpp 343 bool GrGpu::setupClipAndFlushState(DrawType type, const GrDeviceCoordTexture* dstCopy,
350 if (!this->flushGraphicsState(type, dstCopy)) {
409 const GrDeviceCoordTexture* dstCopy) {
415 if (!this->setupClipAndFlushState(kDrawPath_DrawType, dstCopy, &are, NULL)) {
425 const GrDeviceCoordTexture* dstCopy) {
431 if (!this->setupClipAndFlushState(kDrawPaths_DrawType, dstCopy, &are, NULL)) {
GrDrawTarget.cpp 416 bool GrDrawTarget::setupDstReadIfNecessary(GrDeviceCoordTexture* dstCopy, const SkRect* drawBounds) {
455 dstCopy->setTexture(ast.texture());
456 dstCopy->setOffset(copyRect.fLeft, copyRect.fTop);
543 GrDeviceCoordTexture dstCopy;
544 if (!this->setupDstReadIfNecessary(&dstCopy, &devBounds)) {
548 this->onDrawPath(path, fill, dstCopy.texture() ? &dstCopy : NULL);
572 GrDeviceCoordTexture dstCopy;
573 if (!this->setupDstReadIfNecessary(&dstCopy, &devBounds)) {
578 dstCopy.texture() ? &dstCopy : NULL)
    [all...]
GrInOrderDrawBuffer.cpp 443 SkPath::FillType fill, const GrDeviceCoordTexture* dstCopy) {
455 if (NULL != dstCopy) {
456 cp->fDstCopy = *dstCopy;
464 const GrDeviceCoordTexture* dstCopy) {
487 if (NULL != dstCopy) {
488 dp->fDstCopy = *dstCopy;
632 const GrDeviceCoordTexture* dstCopy =
636 dstCopy);
    [all...]
GrInOrderDrawBuffer.h 157 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
160 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ResizableIntArrayTests.java 231 final ResizableIntArray dstCopy = new ResizableIntArray(dst.getLength());
232 dstCopy.copy(dst);
238 assertIntArrayEquals("values after append zero", dstCopy.getPrimitiveArray(), startPos,
246 assertIntArrayEquals("original values after append", dstCopy.getPrimitiveArray(), startPos,
257 dstCopy.getPrimitiveArray(), startPos, dst.getPrimitiveArray(), startPos,

Completed in 971 milliseconds

1 2