HomeSort by relevance Sort by last modified time
    Searched refs:boxedValue (Results 1 - 2 of 2) sorted by null

  /external/skia/src/animator/
SkAnimatorScript2.cpp 54 SkDisplayArray* boxedValue = new SkDisplayArray(*operand->fArray);
55 displayable = boxedValue;
58 SkDisplayInt* boxedValue = new SkDisplayInt;
59 displayable = boxedValue;
60 boxedValue->value = operand->fS32;
63 SkDisplayFloat* boxedValue = new SkDisplayFloat;
64 displayable = boxedValue;
65 boxedValue->value = operand->fScalar;
68 SkDisplayString* boxedValue = new SkDisplayString(*operand->fString);
69 displayable = boxedValue;
    [all...]
SkAnimatorScript.cpp 105 SkDisplayArray* boxedValue = new SkDisplayArray(*scriptValue->fOperand.fArray);
106 displayable = boxedValue;
109 SkDisplayBoolean* boxedValue = new SkDisplayBoolean;
110 displayable = boxedValue;
111 boxedValue->value = !! scriptValue->fOperand.fS32;
114 SkDisplayInt* boxedValue = new SkDisplayInt;
115 displayable = boxedValue;
116 boxedValue->value = scriptValue->fOperand.fS32;
119 SkDisplayFloat* boxedValue = new SkDisplayFloat;
120 displayable = boxedValue;
    [all...]

Completed in 169 milliseconds