OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:boxedValue
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/src/animator/
SkAnimatorScript.cpp
97
SkDisplayArray*
boxedValue
= new SkDisplayArray(*scriptValue->fOperand.fArray);
98
displayable =
boxedValue
;
101
SkDisplayBoolean*
boxedValue
= new SkDisplayBoolean;
102
displayable =
boxedValue
;
103
boxedValue
->value = !! scriptValue->fOperand.fS32;
106
SkDisplayInt*
boxedValue
= new SkDisplayInt;
107
displayable =
boxedValue
;
108
boxedValue
->value = scriptValue->fOperand.fS32;
111
SkDisplayFloat*
boxedValue
= new SkDisplayFloat;
112
displayable =
boxedValue
;
[
all
...]
SkAnimatorScript2.cpp
61
SkDisplayArray*
boxedValue
= new SkDisplayArray(*operand->fArray);
62
displayable =
boxedValue
;
65
SkDisplayInt*
boxedValue
= new SkDisplayInt;
66
displayable =
boxedValue
;
67
boxedValue
->value = operand->fS32;
70
SkDisplayFloat*
boxedValue
= new SkDisplayFloat;
71
displayable =
boxedValue
;
72
boxedValue
->value = operand->fScalar;
75
SkDisplayString*
boxedValue
= new SkDisplayString(*operand->fString);
76
displayable =
boxedValue
;
[
all
...]
Completed in 70 milliseconds