Searched defs:fCount (Results 1 - 25 of 93) sorted by relevance

1234

/external/chromium_org/third_party/skia/include/utils/
H A DSkCountdown.h33 int32_t fCount; member in class:SkCountdown
/external/skia/include/utils/
H A DSkCountdown.h33 int32_t fCount; member in class:SkCountdown
/external/chromium_org/third_party/skia/include/effects/
H A DSkDashPathEffect.h60 int32_t fCount; member in class:SkDashPathEffect
/external/chromium_org/third_party/skia/src/images/
H A DSkImageRefPool.h37 int fCount; member in class:SkImageRefPool
/external/skia/include/effects/
H A DSkDashPathEffect.h60 int32_t fCount; member in class:SkDashPathEffect
/external/skia/src/images/
H A DSkImageRefPool.h37 int fCount; member in class:SkImageRefPool
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dchoicfmt.h682 * Each ChoiceFormat divides the range -Inf..+Inf into fCount
688 * fCount-2: fChoiceLimits[fCount-2]..fChoiceLimits[fCount-1]
689 * fCount-1: fChoiceLimits[fCount-1]..+Inf
721 int32_t fCount; member in class:ChoiceFormat
H A Dsortkey.h285 int32_t fCount; member in class:CollationKey
316 count = fCount;
/external/chromium_org/third_party/skia/include/core/
H A DSkColorTable.h41 int count() const { return fCount; }
47 SkASSERT(fColors != NULL && (unsigned)index < fCount);
84 uint16_t fCount; member in class:SkColorTable
H A DSkDeque.h36 bool empty() const { return 0 == fCount; }
37 int count() const { return fCount; }
125 int fCount; // number of elements in the deque member in class:SkDeque
H A DSkTDStack.h17 SkTDStack() : fCount(0), fTotalCount(0) {
21 // fCount = kSlotCount;
38 SkASSERT(fCount <= kSlotCount);
39 if (fCount == kSlotCount) {
43 fCount = 0;
46 return &fRec->fSlots[fCount++];
52 SkASSERT(fRec && fCount > idx);
53 return fRec->fSlots[fCount - idx - 1];
57 SkASSERT(fRec && fCount > idx);
58 return fRec->fSlots[fCount
107 int fCount, fTotalCount; member in class:SkTDStack
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkMipMap.h34 int fCount; member in class:SkMipMap
H A DSkPerspIter.h45 int fCount; member in class:SkPerspIter
H A DSkScaledImageCache.h180 int fCount; member in class:SkScaledImageCache
H A DSkTRefArray.h31 obj->fCount = count;
64 int count() const { return fCount; }
66 const T* end() const { return this->begin() + fCount; }
68 SkASSERT((unsigned)index < (unsigned)fCount);
81 return this->writableBegin() + fCount;
84 SkASSERT((unsigned)index < (unsigned)fCount);
91 int n = fCount;
104 int fCount; member in class:SkTRefArray
/external/skia/include/core/
H A DSkColorTable.h41 int count() const { return fCount; }
47 SkASSERT(fColors != NULL && (unsigned)index < fCount);
84 uint16_t fCount; member in class:SkColorTable
/external/skia/src/core/
H A DSkMipMap.h34 int fCount; member in class:SkMipMap
H A DSkPerspIter.h45 int fCount; member in class:SkPerspIter
H A DSkScaledImageCache.h180 int fCount; member in class:SkScaledImageCache
/external/chromium_org/third_party/icu/source/i18n/
H A Dnfrlist.h36 uint32_t fCount; member in class:NFRuleList
41 , fCount(0)
45 for(uint32_t i = 0; i < fCount; ++i) {
57 fCount -= 1;
58 for (uint32_t i = index; i < fCount; ++i) { // assumes small arrays
64 if (fCount == fCapacity) {
69 fStuff[fCount++] = thing;
72 fCount = 0;
75 uint32_t size() const { return fCount; }
76 NFRule* last() const { return (fCount >
[all...]
/external/icu4c/i18n/
H A Dnfrlist.h36 uint32_t fCount; member in class:NFRuleList
41 , fCount(0)
45 for(uint32_t i = 0; i < fCount; ++i) {
57 fCount -= 1;
58 for (uint32_t i = index; i < fCount; ++i) { // assumes small arrays
64 if (fCount == fCapacity) {
69 fStuff[fCount++] = thing;
72 fCount = 0;
75 uint32_t size() const { return fCount; }
76 NFRule* last() const { return (fCount >
[all...]
/external/skia/tests/
H A DMetaDataTest.cpp74 int fCount; member in struct:__anon26527
96 REPORTER_ASSERT(reporter, gElems[i].fCount == count);
H A DRefCntTest.cpp18 InstCounterClass() { fCount = gInstCounter++; }
20 fCount = src.fCount;
26 int fCount; member in class:InstCounterClass
50 REPORTER_ASSERT(reporter, i == src[i].fCount);
59 REPORTER_ASSERT(reporter, i == (*array)[i].fCount);
66 REPORTER_ASSERT(reporter, i == (*array)[i].fCount);
/external/chromium_org/third_party/skia/src/text/
H A DSkTextLayout.cpp55 int fCount; member in struct:SkTextLayout::GlyphRun
58 SkTextLayout::GlyphRun::GlyphRun() : fLocs(NULL), fGlyphIDs(NULL), fCount(0) {}
/external/icu4c/layoutex/layout/
H A DRunArrays.h218 le_int32 fCount; member in class:RunArray
223 : UObject(), fClientArrays(FALSE), fLimits(NULL), fCount(0), fCapacity(0)
229 : UObject(), fClientArrays(FALSE), fLimits(NULL), fCount(0), fCapacity(0)
235 : UObject(), fClientArrays(TRUE), fLimits(limits), fCount(count), fCapacity(count)
242 return fCount;
247 fCount = 0;
252 if (run < 0 || run >= fCount) {
261 return getLimit(fCount - 1);

Completed in 430 milliseconds

1234