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 135 final InputPointers dstCopy = new InputPointers(DEFAULT_CAPACITY);
136 dstCopy.copy(dst);
141 dstCopy.getXCoordinates(), 0, dst.getXCoordinates(), 0, dstLen);
143 dstCopy.getYCoordinates(), 0, dst.getYCoordinates(), 0, dstLen);
145 dstCopy.getPointerIds(), 0, dst.getPointerIds(), 0, dstLen);
147 dstCopy.getTimes(), 0, dst.getTimes(), 0, dstLen);
154 dstCopy.getXCoordinates(), 0, dst.getXCoordinates(), 0, dstLen);
156 dstCopy.getYCoordinates(), 0, dst.getYCoordinates(), 0, dstLen);
158 dstCopy.getPointerIds(), 0, dst.getPointerIds(), 0, dstLen);
160 dstCopy.getTimes(), 0, dst.getTimes(), 0, dstLen)
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgram.cpp 197 const GrDeviceCoordTexture* dstCopy,
218 if (NULL != dstCopy) {
221 static_cast<GrGLfloat>(dstCopy->offset().fX),
222 static_cast<GrGLfloat>(dstCopy->offset().fY));
224 1.f / dstCopy->texture()->width(),
225 1.f / dstCopy->texture()->height());
226 GrGLTexture* texture = static_cast<GrGLTexture*>(dstCopy->texture());
GrGLProgramDesc.cpp 45 const GrDeviceCoordTexture* dstCopy,
173 SkASSERT(NULL != dstCopy || gpu->caps()->dstReadInShaderSupport());
175 if (NULL != dstCopy) {
176 dstCopyTexture = dstCopy->texture();
GrGLProgram.h 131 const GrDeviceCoordTexture* dstCopy, // can be NULL
GrGpuGL_program.cpp 211 bool GrGpuGL::flushGraphicsState(DrawType type, const GrDeviceCoordTexture* dstCopy) {
241 dstCopy,
270 dstCopy,
GrGLProgramDesc.h 72 const GrDeviceCoordTexture* dstCopy,
GrGLShaderBuilder.cpp 301 GrGLShaderBuilder::DstReadKey GrGLShaderBuilder::KeyForDstRead(const GrTexture* dstCopy,
307 SkASSERT(NULL != dstCopy);
308 if (!caps.textureSwizzleSupport() && GrPixelConfigIsAlphaOnly(dstCopy->config())) {
312 if (kTopLeft_GrSurfaceOrigin == dstCopy->origin()) {
    [all...]
GrGLShaderBuilder.h 112 static DstReadKey KeyForDstRead(const GrTexture* dstCopy, const GrGLCaps&);
  /external/skia/src/gpu/gl/
GrGLProgram.cpp 197 const GrDeviceCoordTexture* dstCopy,
218 if (NULL != dstCopy) {
221 static_cast<GrGLfloat>(dstCopy->offset().fX),
222 static_cast<GrGLfloat>(dstCopy->offset().fY));
224 1.f / dstCopy->texture()->width(),
225 1.f / dstCopy->texture()->height());
226 GrGLTexture* texture = static_cast<GrGLTexture*>(dstCopy->texture());
GrGLProgramDesc.cpp 45 const GrDeviceCoordTexture* dstCopy,
173 SkASSERT(NULL != dstCopy || gpu->caps()->dstReadInShaderSupport());
175 if (NULL != dstCopy) {
176 dstCopyTexture = dstCopy->texture();
GrGLProgram.h 131 const GrDeviceCoordTexture* dstCopy, // can be NULL
GrGpuGL_program.cpp 211 bool GrGpuGL::flushGraphicsState(DrawType type, const GrDeviceCoordTexture* dstCopy) {
241 dstCopy,
270 dstCopy,
GrGLProgramDesc.h 72 const GrDeviceCoordTexture* dstCopy,
GrGLShaderBuilder.cpp 301 GrGLShaderBuilder::DstReadKey GrGLShaderBuilder::KeyForDstRead(const GrTexture* dstCopy,
307 SkASSERT(NULL != dstCopy);
308 if (!caps.textureSwizzleSupport() && GrPixelConfigIsAlphaOnly(dstCopy->config())) {
312 if (kTopLeft_GrSurfaceOrigin == dstCopy->origin()) {
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrDrawTarget.h 472 const GrDeviceCoordTexture* dstCopy) {
473 this->onDrawPath(path, fill, dstCopy);
    [all...]
GrGpu.h 361 const GrDeviceCoordTexture* dstCopy,
472 virtual bool flushGraphicsState(DrawType, const GrDeviceCoordTexture* dstCopy) = 0;
484 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
GrGpu.cpp 333 bool GrGpu::setupClipAndFlushState(DrawType type, const GrDeviceCoordTexture* dstCopy,
339 if (!this->flushGraphicsState(type, dstCopy)) {
399 const GrDeviceCoordTexture* dstCopy) {
405 if (!this->setupClipAndFlushState(kDrawPath_DrawType, dstCopy, &are)) {
GrDrawTarget.cpp 415 bool GrDrawTarget::setupDstReadIfNecessary(GrDeviceCoordTexture* dstCopy, const SkRect* drawBounds) {
454 dstCopy->setTexture(ast.texture());
455 dstCopy->setOffset(copyRect.fLeft, copyRect.fTop);
542 GrDeviceCoordTexture dstCopy;
543 if (!this->setupDstReadIfNecessary(&dstCopy, &devBounds)) {
547 this->onDrawPath(path, fill, dstCopy.texture() ? &dstCopy : NULL);
    [all...]
GrInOrderDrawBuffer.h 141 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
  /external/skia/src/gpu/
GrDrawTarget.h 472 const GrDeviceCoordTexture* dstCopy) {
473 this->onDrawPath(path, fill, dstCopy);
    [all...]
GrGpu.h 361 const GrDeviceCoordTexture* dstCopy,
472 virtual bool flushGraphicsState(DrawType, const GrDeviceCoordTexture* dstCopy) = 0;
484 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
GrGpu.cpp 333 bool GrGpu::setupClipAndFlushState(DrawType type, const GrDeviceCoordTexture* dstCopy,
339 if (!this->flushGraphicsState(type, dstCopy)) {
399 const GrDeviceCoordTexture* dstCopy) {
405 if (!this->setupClipAndFlushState(kDrawPath_DrawType, dstCopy, &are)) {
GrDrawTarget.cpp 415 bool GrDrawTarget::setupDstReadIfNecessary(GrDeviceCoordTexture* dstCopy, const SkRect* drawBounds) {
454 dstCopy->setTexture(ast.texture());
455 dstCopy->setOffset(copyRect.fLeft, copyRect.fTop);
542 GrDeviceCoordTexture dstCopy;
543 if (!this->setupDstReadIfNecessary(&dstCopy, &devBounds)) {
547 this->onDrawPath(path, fill, dstCopy.texture() ? &dstCopy : NULL);
    [all...]
GrInOrderDrawBuffer.h 141 const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ResizableIntArrayTests.java 219 final ResizableIntArray dstCopy = new ResizableIntArray(dst.getLength());
220 dstCopy.copy(dst);
226 dstCopy.getPrimitiveArray(), 0, dst.getPrimitiveArray(), 0, dstLen);
234 dstCopy.getPrimitiveArray(), 0, dst.getPrimitiveArray(), 0, dstLen);
244 dstCopy.getPrimitiveArray(), 0, dst.getPrimitiveArray(), 0, dstLen);

Completed in 96 milliseconds

1 2