Home | History | Annotate | Download | only in animator

Lines Matching refs:fOperand

129         *string = value.fOperand.fString;
190 scriptValue.fOperand.fS32 = 0;
262 maker.findKey(scriptValue.fOperand.fDisplayable, &charPtr);
263 scriptValue.fOperand.fString = new SkString(charPtr);
265 engine.SkScriptEngine::track(scriptValue.fOperand.fString);
270 displayable->setReference(this, scriptValue.fOperand.fDisplayable);
272 arrayStorage->begin()[0].fDisplayable = scriptValue.fOperand.fDisplayable;
306 scriptValue.fOperand.fMSec = SkScalarRoundToInt(scriptValue.fOperand.fScalar * 1000);
314 scriptValue.fOperand.fString = &string;
374 memcpy(&storage->fScalar, &scriptValue.fOperand.fScalar, sizeof(SkScalar));
377 memcpy(&storage->fScalar, scriptValue.fOperand.fArray->begin(), scriptValue.fOperand.fArray->count() * sizeof(SkScalar));
380 storage->fString->set(*scriptValue.fOperand.fString);
389 displayable->executeFunction(displayable, this, scriptValue.fOperand.fArray, nullptr);
391 int count = scriptValue.fOperand.fArray->count();
399 memcpy(&(*arrayStorage)[storageOffset], scriptValue.fOperand.fArray->begin(), count * sizeof(SkOperand));
410 (*destArray)[storageOffset] = scriptValue.fOperand;
413 type = scriptValue.fOperand.fArray->getType();
416 SkASSERT(type == scriptValue.fOperand.fArray->getType());
417 int count = scriptValue.fOperand.fArray->count();
420 memcpy(destArray->begin() + storageOffset, scriptValue.fOperand.fArray->begin(), sizeof(SkOperand) * count);
424 string->set(*scriptValue.fOperand.fString);
426 SkTypedArray* array = scriptValue.fOperand.fArray;
438 (SkColor) array->begin()[index].fS32 : (SkColor) scriptValue.fOperand.fS32;
449 int count = scriptValue.fOperand.fArray->count();
452 memcpy(storage, scriptValue.fOperand.fArray->begin(), count * sizeof(SkOperand));
455 SkASSERT(scriptValue.fOperand.fArray->getType() == type);
456 SkASSERT(scriptValue.fOperand.fArray->count() == getCount());
457 memcpy(storage, scriptValue.fOperand.fArray->begin(), getCount() * sizeof(SkOperand));
459 memcpy(storage, &scriptValue.fOperand, sizeof(SkOperand));