Searched refs:fCount (Results 126 - 150 of 219) sorted by relevance

123456789

/external/skia/src/animator/
H A DSkMemberInfo.h32 // if fCount == 0, record is member property
38 int fCount; // for properties, actual type (count is always assumed to be 1) member in struct:SkMemberInfo
43 signed char fCount;
47 return (SkDisplayTypes) fCount; // hack, but worth it?
56 fType == SkType_MemberFunction ? 1 : fCount;
63 fType == SkType_MemberFunction ? (SkDisplayTypes) fCount : (SkDisplayTypes) fType;
78 return (SkDisplayTypes) fCount; // hack, but worth it?
H A DSkAnimateSet.cpp51 fFieldInfo->setValue(maker, &fValues, 0, fFieldInfo->fCount, NULL,
/external/icu/icu4c/source/layout/
H A DLETableReference.h266 : LETableReference(parent, offset, LE_UINTPTR_MAX, success), fCount(count) {
275 fCount=0;
281 : LETableReference(parent, parent.ptrToOffset(array, success), LE_UINTPTR_MAX, success), fCount(count) {
292 : LETableReference(parent, parent.ptrToOffset(array, success)+offset, LE_UINTPTR_MAX, success), fCount(count) {
303 LEReferenceToArrayOf() :LETableReference(), fCount(0) {}
305 le_uint32 getCount() const { return fCount; }
337 LEReferenceToArrayOf(const LETableReference& parent, LEErrorCode & success) : LETableReference(parent,0, LE_UINTPTR_MAX, success), fCount(0) {
342 le_uint32 fCount; member in class:LEReferenceToArrayOf
/external/skia/include/utils/
H A DSkJSON.h216 int count() const { return fCount; }
266 int fCount; member in class:SkJSON::Array
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkGradientShader.cpp16 buffer.writeColorArray(fColors, fCount);
19 buffer.writeScalarArray(fPos, fCount);
34 fCount = buffer.getArrayCount();
35 if (fCount > kStorageCount) {
36 size_t allocSize = (sizeof(SkColor) + sizeof(SkScalar)) * fCount;
39 fPos = (SkScalar*)(fColors + fCount);
45 if (!buffer.readColorArray(const_cast<SkColor*>(fColors), fCount)) {
49 if (!buffer.readScalarArray(const_cast<SkScalar*>(fPos), fCount)) {
73 SkASSERT(desc.fCount > 1);
93 fColorCount = desc.fCount;
[all...]
/external/skia/include/effects/
H A DSkDashPathEffect.h65 int32_t fCount; member in class:SkDashPathEffect
/external/chromium_org/third_party/icu/source/i18n/
H A Dfmtable.cpp200 fValue.fArrayAndCount.fCount = count;
231 fValue.fArrayAndCount.fCount = source.fValue.fArrayAndCount.fCount;
233 source.fValue.fArrayAndCount.fCount);
301 if (fValue.fArrayAndCount.fCount != that.fValue.fArrayAndCount.fCount) {
306 for (i=0; i<fValue.fArrayAndCount.fCount; ++i) {
590 fValue.fArrayAndCount.fCount = count;
613 fValue.fArrayAndCount.fCount = count;
679 count = fValue.fArrayAndCount.fCount;
[all...]
/external/icu/icu4c/source/i18n/
H A Dfmtable.cpp200 fValue.fArrayAndCount.fCount = count;
231 fValue.fArrayAndCount.fCount = source.fValue.fArrayAndCount.fCount;
233 source.fValue.fArrayAndCount.fCount);
301 if (fValue.fArrayAndCount.fCount != that.fValue.fArrayAndCount.fCount) {
306 for (i=0; i<fValue.fArrayAndCount.fCount; ++i) {
590 fValue.fArrayAndCount.fCount = count;
613 fValue.fArrayAndCount.fCount = count;
679 count = fValue.fArrayAndCount.fCount;
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPictureFlat.h111 int count() const { return fCount; }
119 buffer.setTypefaceArray((SkTypeface**)fArray, fCount);
123 int fCount; member in class:SkTypefacePlayback
129 SkFactoryPlayback(int count) : fCount(count) {
140 buffer.setFactoryPlayback(fArray, fCount);
144 int fCount; member in class:SkFactoryPlayback
H A DSkResourceCache.cpp45 fCount = 0;
230 fCount -= 1;
247 if (!forcePurge && fTotalBytesUsed < byteLimit && fCount < countLimit) {
320 fCount += 1;
356 SkASSERT(fCount == count);
376 fCount, fTotalBytesUsed, fDiscardableFactory ? "discardable" : "malloc");
H A DSkMipMap.cpp215 : fSize(size), fLevels(levels), fCount(count) {
248 if (level > fCount) {
249 level = fCount;
/external/skia/src/core/
H A DSkPictureFlat.h108 int count() const { return fCount; }
116 buffer.setTypefaceArray((SkTypeface**)fArray, fCount);
120 int fCount; member in class:SkTypefacePlayback
126 SkFactoryPlayback(int count) : fCount(count) {
137 buffer.setFactoryPlayback(fArray, fCount);
141 int fCount; member in class:SkFactoryPlayback
H A DSkMipMap.cpp215 : fSize(size), fLevels(levels), fCount(count) {
248 if (level > fCount) {
249 level = fCount;
/external/chromium_org/third_party/skia/include/core/
H A DSkPathEffect.h110 * in if the PathEffect can be a dash pattern. If passed in info has an fCount equal or
113 * and fCount. If effect can be represented as a dash pattern, allocate space for the intervals
123 DashInfo() : fIntervals(NULL), fCount(0), fPhase(0) {}
127 int32_t fCount; //!< Number of intervals in the dash. Should be even number member in struct:SkPathEffect::DashInfo
/external/chromium_org/third_party/skia/tests/
H A DMetaDataTest.cpp73 int fCount; member in struct:__anon15395
95 REPORTER_ASSERT(reporter, gElems[i].fCount == count);
/external/skia/include/core/
H A DSkPathEffect.h110 * in if the PathEffect can be a dash pattern. If passed in info has an fCount equal or
113 * and fCount. If effect can be represented as a dash pattern, allocate space for the intervals
123 DashInfo() : fIntervals(NULL), fCount(0), fPhase(0) {}
127 int32_t fCount; //!< Number of intervals in the dash. Should be even number member in struct:SkPathEffect::DashInfo
/external/skia/tests/
H A DMetaDataTest.cpp73 int fCount; member in struct:__anon30799
95 REPORTER_ASSERT(reporter, gElems[i].fCount == count);
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimateSet.cpp51 fFieldInfo->setValue(maker, &fValues, 0, fFieldInfo->fCount, NULL,
/external/chromium_org/third_party/skia/src/fonts/
H A DSkGScalerContext.cpp237 int countGlyphs() const { return fCount; }
240 SkASSERT((unsigned)index < (unsigned)fCount);
245 SkASSERT((unsigned)index < (unsigned)fCount);
255 int fCount;
/external/skia/src/fonts/
H A DSkGScalerContext.cpp235 int countGlyphs() const { return fCount; }
238 SkASSERT((unsigned)index < (unsigned)fCount);
243 SkASSERT((unsigned)index < (unsigned)fCount);
253 int fCount;
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dreslist.h107 uint32_t fCount; member in struct:SResTable
117 uint32_t fCount; member in struct:SResArray
145 uint32_t fCount; member in struct:SResIntVector
H A Dwrtjava.c334 if (res->u.fArray.fCount > 0) {
398 for(i = 0; i<res->u.fIntVector.fCount; i++) {
409 for(i = 0; i<res->u.fIntVector.fCount; i++) {
516 if (res->u.fTable.fCount > 0) {
531 assert(i < res->u.fTable.fCount);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRedBlackTree.h75 bool empty() const {return 0 == fCount;}
80 int count() const {return fCount;}
175 int fCount; member in class:GrRedBlackTree
230 fCount = 0;
339 fCount = 0;
346 ++fCount;
383 SkASSERT(1 == fCount);
591 --fCount;
632 SkASSERT(0 == fCount);
851 if (fCount) {
[all...]
/external/skia/src/gpu/
H A DGrRedBlackTree.h75 bool empty() const {return 0 == fCount;}
80 int count() const {return fCount;}
175 int fCount; member in class:GrRedBlackTree
230 fCount = 0;
339 fCount = 0;
346 ++fCount;
383 SkASSERT(1 == fCount);
591 --fCount;
632 SkASSERT(0 == fCount);
851 if (fCount) {
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Dwrtjava.c334 if (res->u.fArray.fCount > 0) {
398 for(i = 0; i<res->u.fIntVector.fCount; i++) {
409 for(i = 0; i<res->u.fIntVector.fCount; i++) {
516 if (res->u.fTable.fCount > 0) {
531 assert(i < res->u.fTable.fCount);

Completed in 2976 milliseconds

123456789