HomeSort by relevance Sort by last modified time
    Searched defs:fCount (Results 26 - 50 of 100) sorted by null

12 3 4

  /external/chromium_org/third_party/skia/include/core/
SkDeque.h 36 bool empty() const { return 0 == fCount; }
37 int count() const { return fCount; }
125 int fCount; // number of elements in the deque
SkTDStack.h 17 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 - idx - 1]
    [all...]
  /external/chromium_org/third_party/skia/src/text/
SkTextLayout.cpp 55 int fCount;
58 SkTextLayout::GlyphRun::GlyphRun() : fLocs(NULL), fGlyphIDs(NULL), fCount(0) {}
  /external/icu4c/layoutex/layout/
RunArrays.h 218 le_int32 fCount;
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/skia/gm/
gradients_no_texture.cpp 13 int fCount;
32 data.fCount, tm, mapper);
41 data.fPos, data.fCount, tm, mapper);
50 data.fPos, data.fCount, mapper);
63 data.fColors, data.fPos, data.fCount, tm, mapper);
76 data.fCount, tm, mapper);
  /external/skia/include/core/
SkDataTable.h 28 bool isEmpty() const { return 0 == fCount; }
33 int count() const { return fCount; }
102 int fCount;
SkDeque.h 36 bool empty() const { return 0 == fCount; }
37 int count() const { return fCount; }
125 int fCount; // number of elements in the deque
SkTDStack.h 17 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 - idx - 1]
    [all...]
  /external/skia/src/text/
SkTextLayout.cpp 55 int fCount;
58 SkTextLayout::GlyphRun::GlyphRun() : fLocs(NULL), fGlyphIDs(NULL), fCount(0) {}
  /external/skia/tests/
PackBitsTest.cpp 27 int fCount;
38 gTests[i].fCount, dst);
41 bool match = gTests[i].fCount == srcCount && memcmp(gTests[i].fSrc, src,
42 gTests[i].fCount * sizeof(uint16_t)) == 0;
77 int fCount;
88 size_t maxSize = SkPackBits::ComputeMaxSize8(gTests[i].fCount);
90 gTests[i].fCount, dst);
94 bool match = gTests[i].fCount == srcCount &&
96 gTests[i].fCount * sizeof(uint8_t)) == 0;
  /external/chromium_org/third_party/icu/source/i18n/unicode/
fmtable.h 432 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; }
635 int32_t fCount;
  /external/chromium_org/third_party/skia/include/effects/
SkLayerDrawLooper.h 124 int fCount;
  /external/chromium_org/third_party/skia/include/utils/
SkJSON.h 216 int count() const { return fCount; }
266 int fCount;
  /external/chromium_org/third_party/skia/src/animator/
SkMemberInfo.h 32 // if fCount == 0, record is member property
38 int fCount; // for properties, actual type (count is always assumed to be 1)
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?
SkTDArray_Experimental.h 53 bool isEmpty() const { return fCount == 0; }
54 int count() const { return fCount; }
58 SkASSERT(index + count <= fCount);
59 fCount = SkToU16(fCount - count);
60 memmove(fArray + index, fArray + index + count, sizeof(int32_t) * (fCount - index));
72 fReserve = fCount = 0;
76 SkASSERT(fReserve == 0 && fCount == 0);
83 this->growBy(count - fCount);
85 fCount = SkToU16(count)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkDescriptor.h 35 fCount = 0;
52 fCount += 1;
69 int count = fCount;
115 uint32_t getCount() const { return fCount; }
121 uint32_t fCount;
SkFontStream.cpp 104 SfntHeader() : fCount(0), fDir(NULL) {}
107 /** If it returns true, then fCount and fDir are properly initialized.
117 fCount = count_tables(stream, ttcIndex, &offsetToDir);
118 if (0 == fCount) {
127 size_t size = fCount * sizeof(SkSFNTDirEntry);
132 int fCount;
163 for (int i = 0; i < header.fCount; i++) {
167 return header.fCount;
178 for (int i = 0; i < header.fCount; i++) {
SkRTree.h 83 bool isEmpty() const { return 0 == fCount; }
89 virtual int getCount() const { return fCount; }
182 int fCount;
SkTDynamicHash.h 33 int count() const { return fCount; }
99 fCount = 0;
112 // Is fCount correct?
119 SKTDYNAMICHASH_CHECK(count == fCount);
165 fCount++;
181 fCount--;
191 if (fCount + fDeleted + 1 > (fCapacity * kGrowPercent) / 100) {
197 if (fCount < (fCapacity * kShrinkPercent) / 100 && fCapacity / 2 > kMinCapacity) {
203 SkDEBUGCODE(int oldCount = fCount;)
215 SkASSERT(oldCount == fCount);
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrAllocator.h 35 fCount(0) {
51 SkASSERT(0 == fCount);
64 int indexInBlock = fCount % fItemsPerBlock;
67 if (0 != fCount) {
73 void* ret = (char*)fBlocks[fCount/fItemsPerBlock] +
75 ++fCount;
84 GrUIDivRoundUp(fCount, fItemsPerBlock));
93 fCount = 0;
100 return fCount;
106 bool empty() const { return fCount == 0;
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLVertexArray.h 23 GrGLint fCount;
  /external/icu4c/i18n/unicode/
fmtable.h 444 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; }
656 int32_t fCount;
  /external/skia/include/effects/
SkLayerDrawLooper.h 124 int fCount;
  /external/skia/include/utils/
SkJSON.h 216 int count() const { return fCount; }
266 int fCount;
  /external/skia/src/animator/
SkMemberInfo.h 32 // if fCount == 0, record is member property
38 int fCount; // for properties, actual type (count is always assumed to be 1)
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 258 milliseconds

12 3 4