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

123

/external/skia/include/core/
H A DSkColorTable.h36 int count() const { return fCount; }
42 SkASSERT(fColors != NULL && (unsigned)index < (unsigned)fCount);
62 int 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...]
H A DSkDataTable.h28 bool isEmpty() const { return 0 == fCount; }
33 int count() const { return fCount; }
102 int fCount; member in class:SkDataTable
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
H A DSkPicture.h189 SnapshotArray(const SkPicture* pics[], int count) : fPics(pics), fCount(count) {}
190 ~SnapshotArray() { for (int i = 0; i < fCount; i++) { fPics[i]->unref(); } }
193 int count() const { return fCount; }
196 int fCount; member in class:SkPicture::SnapshotArray
/external/skia/bench/
H A DMemcpyBench.cpp17 : fCount(count)
30 fDst.reset(fCount);
31 fSrc.reset(fCount);
34 for (int i = 0; i < fCount; i++) {
41 fMemcpy32(fDst, fSrc, fCount);
48 int fCount; member in class:Memcpy32Bench
/external/skia/include/effects/
H A DSkDashPathEffect.h67 int32_t fCount; member in class:SkDashPathEffect
H A DSkLayerDrawLooper.h100 int fCount; member in class:SkLayerDrawLooper
158 int fCount; member in class:SkLayerDrawLooper::Builder
/external/skia/include/ports/
H A DSkRemotableFontMgr.h42 int count() const { return fCount; }
48 SkRemotableFontIdentitySet() : fCount(0), fData() { }
52 int fCount; member in class:SkRemotableFontIdentitySet
/external/skia/src/core/
H A DSkMipMap.h39 int fCount; member in class:SkMipMap
H A DSkPerspIter.h45 int fCount; member in class:SkPerspIter
H A DSkVertState.h31 fCount = indexCount;
33 fCount = vCount;
46 int fCount; member in struct:VertState
H A DSkColorTable.cpp19 fCount = count;
45 int fCount; member in struct:__anon13889::Build16BitCache
48 uint16_t* cache = (uint16_t*)sk_malloc_throw(fCount * sizeof(uint16_t));
49 for (int i = 0; i < fCount; i++) {
60 const Build16BitCache create = { fColors, fCount };
71 fCount = buffer.getArrayCount();
72 size_t allocSize = fCount * sizeof(SkPMColor);
76 SkDEBUGCODE(success =) buffer.readColorArray(fColors, fCount);
78 fCount = 0;
82 SkASSERT((unsigned)fCount <
[all...]
H A DSkRTree.h51 int getDepth() const { return fCount ? fRoot.fSubtree->fLevel + 1 : 0; }
53 int getCount() const { return fCount; }
90 int fCount; member in class:SkRTree
H A DSkTMultiMap.h31 SkTMultiMap() : fCount(0) {}
34 SkASSERT(fCount == 0);
53 ++fCount;
80 --fCount;
103 int count() const { return fCount; }
120 int fCount; member in class:SkTMultiMap
/external/icu/icu4c/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/skia/tests/
H A DMetaDataTest.cpp74 int fCount; member in struct:__anon14136
96 REPORTER_ASSERT(reporter, gElems[i].fCount == count);
/external/icu/icu4c/source/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);
/external/junit/src/org/junit/runner/
H A DResult.java19 private AtomicInteger fCount = new AtomicInteger(); field in class:Result
29 return fCount.get();
81 fCount.getAndIncrement();
/external/skia/experimental/PdfViewer/src/
H A DSkTDStackNester.h34 : fCount(0)
119 SkASSERT(fCount <= kSlotCount);
120 if (fCount == kSlotCount) {
124 fCount = 0;
128 return &fRec->fSlots[fCount++];
140 SkASSERT(fRec && fCount > 0);
141 return fRec->fSlots[fCount - 1];
148 SkASSERT(fRec && fCount > 0);
149 return fRec->fSlots[fCount - 1];
157 *elem = fRec->fSlots[fCount
200 int fCount; member in class:SkTDStackNester
[all...]
/external/skia/gm/
H A DgradientDirtyLaundry.cpp14 int fCount; member in struct:GradData
39 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos, data.fCount, tm);
47 data.fPos, data.fCount, tm);
54 return SkGradientShader::CreateSweep(center.fX, center.fY, data.fColors, data.fPos, data.fCount);
/external/skia/include/gpu/
H A DGrProcessor.h27 GrProcessorKeyBuilder(SkTArray<unsigned char, true>* data) : fData(data), fCount(0) {
32 ++fCount;
40 fCount += count;
44 size_t size() const { return sizeof(uint32_t) * fCount; }
48 int fCount; // number of uint32_ts added to fData by the processor. member in class:GrProcessorKeyBuilder
/external/skia/samplecode/
H A DSampleGradients.cpp44 int fCount; member in struct:GradData
67 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos, data.fCount, tm);
75 data.fPos, data.fCount, tm);
82 return SkGradientShader::CreateSweep(center.fX, center.fY, data.fColors, data.fPos, data.fCount);
94 data.fColors, data.fPos, data.fCount, tm);
105 data.fColors, data.fPos, data.fCount, tm);
/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?

Completed in 7688 milliseconds

123