HomeSort by relevance Sort by last modified time
    Searched defs:dstCopy (Results 1 - 6 of 6) sorted by null

  /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...]
  /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,
  /external/chromium_org/third_party/skia/src/gpu/
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...]
  /external/skia/src/gpu/
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...]

Completed in 312 milliseconds