OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fValues
(Results
1 - 19
of
19
) sorted by null
/external/skia/src/animator/
SkAnimateSet.cpp
63
fFieldInfo->setValue(maker, &
fValues
, 0, fFieldInfo->fCount, NULL,
78
if (
fValues
.getType() == SkType_Unknown) {
79
fValues
.setType(outType);
80
fValues
.setCount(comps);
82
fValues
[0].fString = SkNEW(SkString);
84
memset(
fValues
.begin(), 0,
fValues
.count() * sizeof(
fValues
.begin()[0]));
86
SkASSERT(
fValues
.getType() == outType);
88
comps =
fValues
.count()
[
all
...]
SkOperandInterpolator.h
29
SkOperand* getValues() { return
fValues
; }
48
SkOperand*
fValues
; // pointer into fStorage
SkAnimateBase.h
40
int entries() { return
fValues
.count() / components(); }
46
SkOperand* getValues() { return
fValues
.begin(); }
47
SkDisplayTypes getValuesType() { return
fValues
.getType(); }
61
// !!! make field part of a union with fFieldInfo, or
fValues
, something known later?
74
SkTypedArray
fValues
;
SkAnimateField.cpp
101
fFieldInfo->setValue(maker, &
fValues
, 0, 0, NULL, outType, to);
117
fValues
.setType(outType);
125
fValues
.setCount(max);
126
memset(
fValues
.begin(), 0, max * sizeof(
fValues
.begin()[0]));
127
fFieldInfo->setValue(maker, &
fValues
, fFieldOffset, max, this, outType, from);
128
fFieldInfo->setValue(maker, &
fValues
, fComponents + fFieldOffset, max, this, outType, to);
SkAnimatorScript2.h
14
const char*
fValues
;
SkOperandIterpolator.cpp
40
fValues
= (SkOperand*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
43
fValuesArray = (SkOperand(*)[10])
fValues
;
61
SkOperand* dst = &
fValues
[fElemCount * index];
75
const SkOperand* nextSrc = &
fValues
[index * fElemCount];
SkAnimateBase.cpp
58
SkDisplayTypes type =
fValues
.getType();
60
SkASSERT(
fValues
.count() == 1);
61
delete
fValues
[0].fString;
SkAnimatorScript.h
30
const char*
fValues
;
SkDump.cpp
99
const char* str = map.
fValues
;
SkAnimatorScript2.cpp
373
*fCallBackArray.append() = new SkAnimatorScript_Enum(map.
fValues
);
SkAnimatorScript.cpp
75
propertyCallBack(EvalEnum, (void*) map.
fValues
);
/external/icu4c/layoutex/
RunArrays.cpp
181
: RunArray(initialCapacity),
fValues
(NULL)
184
fValues
= LE_NEW_ARRAY(le_int32, initialCapacity);
191
LE_DELETE_ARRAY(
fValues
);
192
fValues
= NULL;
199
fValues
= LE_NEW_ARRAY(le_int32, capacity);
205
fValues
= (const le_int32 *) LE_GROW_ARRAY(
fValues
, capacity);
213
le_int32 *values = (le_int32 *)
fValues
;
227
return
fValues
[run];
/external/skia/src/xml/
SkBML_XMLParser.cpp
73
char*
fValues
[256];
82
memset(
fValues
, 0, sizeof(
fValues
));
90
freeAll(
fValues
);
106
set(rec.
fValues
, rec.fNextValue++, s, 31);
116
set(rec.
fValues
, rec.fNextValue++, s, 31);
126
writer.addAttribute(rec.fNames[nameIndex], rec.
fValues
[valueIndex]);
/external/icu4c/layoutex/layout/
RunArrays.h
654
const le_int32 *
fValues
;
658
: RunArray(0),
fValues
(NULL)
664
: RunArray(0),
fValues
(NULL)
670
: RunArray(limits, count),
fValues
(values)
/external/skia/include/utils/
SkInterpolator.h
125
SkScalar*
fValues
; // pointer into fStorage
/external/skia/src/utils/
SkInterpolator.cpp
140
fValues
= NULL;
154
fValues
= (SkScalar*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
157
fScalarsArray = (SkScalar(*)[10])
fValues
;
187
SkScalar* dst = &
fValues
[fElemCount * index];
200
const SkScalar* nextSrc = &
fValues
[index * fElemCount];
/external/icu4c/i18n/
zstrfmt.h
37
void *
fValues
; // Union of one single value vs. UVector of values.
44
// No value:
fValues
== NULL and fHasValuesVector == FALSE
45
// One value:
fValues
== value and fHasValuesVector == FALSE
46
// >=2 values:
fValues
== UVector of values and fHasValuesVector == TRUE
50
return (UBool)(
fValues
!= NULL);
55
fValues
== NULL ? 0 :
57
((const UVector *)
fValues
)->size();
62
return
fValues
; // Assume index == 0.
64
return ((const UVector *)
fValues
)->elementAt(index);
zstrfmt.cpp
168
if (
fValues
== NULL) {
171
deleteZoneStringInfo(
fValues
);
173
delete (UVector *)
fValues
;
183
if (
fValues
== NULL) {
184
fValues
= value;
195
values->addElement(
fValues
, status);
196
fValues
= values;
200
((UVector *)
fValues
)->addElement(value, status);
[
all
...]
/external/jdiff/
xerces.jar
Completed in 1544 milliseconds