HomeSort by relevance Sort by last modified time
    Searched refs:fIndex (Results 1 - 25 of 49) sorted by null

1 2

  /external/skia/src/gpu/gl/builders/
GrGLSLPrettyPrint.cpp 35 fIndex = 0;
39 while (fLength > fIndex) {
73 } else if ('{' == fInput[fIndex]) {
78 } else if ('}' == fInput[fIndex]) {
89 } else if ('\t' == fInput[fIndex] || '\n' == fInput[fIndex] ||
90 (fFreshline && ' ' == fInput[fIndex])) {
91 fIndex++;
93 this->appendChar(fInput[fIndex]);
102 fPretty.appendf("%c", fInput[fIndex++])
    [all...]
  /external/skia/tools/VisualBench/
VisualDebugModule.cpp 14 , fIndex(0)
35 fIndex = fDebugCanvas->getSize() - 1;
60 fDebugCanvas->drawTo(canvas, fIndex);
68 case 'a': fIndex = (fIndex + 1) % (fDebugCanvas->getSize() - 1); break;
69 case 's': fIndex = fIndex <= 0 ? fDebugCanvas->getSize() - 1 : fIndex - 1; break;
VisualDebugModule.h 34 int fIndex;
  /external/skia/src/core/
SkPtrRecorder.h 68 , fIndex(0) {}
74 return fIndex < fSet.fList.count() ? fSet.fList[fIndex++].fPtr : nullptr;
79 int fIndex;
89 uint32_t fIndex; // 1...N
94 // ptr and its ID/fIndex explicitly, since the ptr's position in the array
SkPtrRecorder.cpp 38 return fList[index].fIndex;
54 pair.fIndex = count + 1;
58 return fList[index].fIndex;
67 // p->fIndex is base-1, so we need to subtract to find its slot
69 int index = p[i].fIndex - 1;
SkFontDescriptor.h 19 : fStream(stream), fIndex(index), fAxisCount(axisCount), fAxis(axisCount)
27 , fIndex(that.fIndex)
39 int getIndex() const { return fIndex; }
45 int fIndex;
SkPictureFlat.h 332 int index() const { return fIndex; }
361 void setIndex(int index) { fIndex = index; }
367 fIndex = index;
373 int fIndex;
  /external/skia/src/gpu/
GrRecordReplaceDraw.cpp 70 , fIndex(0)
97 for (fIndex = 0; fIndex < fOps.count(); ++fIndex) {
102 record->visit<void>(fOps[fIndex], *this);
106 for (fIndex = 0; fIndex < (int) record->count(); ++fIndex) {
111 record->visit<void>(fIndex, *this);
126 drawPictureOffset = fOps[fIndex];
    [all...]
GrBatchAtlas.h 155 uint32_t index() const { return fIndex; }
193 return new BatchPlot(fIndex, fGenID+1, fX, fY, fWidth, fHeight, fConfig);
205 const uint32_t fIndex;
GrBatchAtlas.cpp 20 , fIndex(index)
22 , fID(CreateId(fIndex, fGenID))
105 fID = CreateId(fIndex, fGenID);
  /external/skia/debugger/
SkDebugger.h 26 fIndex = index;
29 if (fIndex >= 0) {
30 fDebugCanvas->drawTo(canvas, fIndex);
93 return fIndex;
129 int fIndex;
SkDebugger.cpp 16 , fIndex(-1) {
36 fIndex = fDebugCanvas->getSize() - 1;
  /external/icu/icu4c/source/i18n/
regeximp.cpp 66 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) {
80 if (fIndex >= fLimit) {
83 U16_NEXT(fChars, fIndex, fLimit, originalC);
113 return fIndex;
  /external/skia/tools/
DumpRecord.cpp 23 , fIndex(0)
85 printf("%*d ", fDigits, fIndex++);
110 int fIndex;
  /external/skia/samplecode/
PerlinPatch.cpp 162 int fIndex;
163 PtClick(SkView* view, int index) : Click(view), fIndex(index) {}
191 if (ptClick->fIndex >= 0) {
192 fPts[ptClick->fIndex].set(click->fCurr.fX , click->fCurr.fY );
193 } else if (-1 == ptClick->fIndex) {
198 } else if (-2 == ptClick->fIndex) {
  /external/skia/tests/
PathOpsConicIntersectionTest.cpp 245 for (int fIndex = 0; fIndex < frameSize; ++fIndex) {
246 const SkDConic& dC = frames[index][fIndex];
274 for (int fIndex = 0; fIndex < frameSize; ++fIndex) {
275 const SkDConic& dC = frames[index][fIndex];
282 if (fIndex < 2) {
TDPQueueTest.cpp 70 mutable int fIndex;
73 static int* PQIndex(Dummy* const& dummy) { return &dummy->fIndex; }
94 dummy->fIndex = -1;
109 REPORTER_ASSERT(reporter, -1 != array[j].fIndex);
  /external/skia/src/ports/
SkTypeface_win_dw.cpp 139 : fIndex(0), fStrings(strings)
143 if (fIndex >= fStrings->GetCount()) {
149 HRBM(fStrings->GetStringLength(fIndex, &stringLen), "Could not get string length.");
152 HRBM(fStrings->GetString(fIndex, wString.get(), stringLen+1), "Could not get string.");
158 HRBM(fStrings->GetLocaleNameLength(fIndex, &localeLen), "Could not get locale length.");
161 HRBM(fStrings->GetLocaleName(fIndex, wLocale.get(), localeLen+1), "Could not get locale.");
165 ++fIndex;
170 UINT32 fIndex;
SkFontMgr_android_parser.h 70 FontFileInfo() : fIndex(0), fWeight(0), fStyle(Style::kAuto) { }
73 int fIndex;
  /external/skia/src/utils/
SkNWayCanvas.cpp 43 fIndex = 0;
46 if (fIndex < fList.count()) {
47 fCanvas = fList[fIndex++];
56 int fIndex;
  /external/skia/src/gpu/batches/
GrAAConvexTessellator.h 135 pt->fIndex = index;
145 int index(int index) const { return fPts[index].fIndex; }
162 int fIndex;
GrAAConvexTessellator.cpp 766 fPts[cur].fNorm = tess.point(fPts[next].fIndex) - tess.point(fPts[cur].fIndex);
797 SkPoint prev = tess.point(fPts[0].fIndex) - tess.point(fPts.top().fIndex);
798 SkPoint cur = tess.point(fPts[1].fIndex) - tess.point(fPts[0].fIndex);
806 cur = tess.point(fPts[next].fIndex) - tess.point(fPts[i].fIndex);
    [all...]
  /external/skia/src/gpu/effects/
GrTextureDomain.cpp 20 : fIndex(index) {
60 if (textureDomain.fIndex >= 0) {
61 uniName.appendS32(textureDomain.fIndex);
  /external/icu/icu4c/source/common/
uresimp.h 75 int32_t fIndex;
  /external/skia/src/pdf/
SkPDFFont.h 57 mutable int fIndex;

Completed in 531 milliseconds

1 2