Searched refs:fIndex (Results 1 - 25 of 74) sorted by last modified time

123

/external/skia/samplecode/
H A DSampleFatBits.cpp380 int fIndex; member in class:IndexClick
382 IndexClick(SkView* v, int index) : SkView::Click(v), fIndex(index) {}
385 return ((IndexClick*)click)->fIndex;
H A DSamplePatch.cpp320 int fIndex; member in class:PatchView::PtClick
321 PtClick(SkView* view, int index) : Click(view), fIndex(index) {}
339 fPts[((PtClick*)click)->fIndex].set(click->fCurr.fX, click->fCurr.fY);
H A DSampleRotateCircles.cpp327 int fIndex; member in class:TestStrokeView::MyClick
328 MyClick(SkView* target, int index) : Click(target), fIndex(index) {}
342 int index = ((MyClick*)click)->fIndex;
H A DSampleSlides.cpp666 int fIndex; member in class:SlideView
679 fIndex = 0;
710 gProc[fIndex](canvas);
715 fIndex = (fIndex + 1) % SK_ARRAY_COUNT(gProc);
/external/skia/src/core/
H A DSkPictureFlat.h314 int index() const { return fIndex; }
343 void setIndex(int index) { fIndex = index; }
349 fIndex = index;
355 int fIndex; member in class:SkFlatData
H A DSkPtrRecorder.cpp38 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;
H A DSkPtrRecorder.h68 uint32_t fIndex; // 1...N member in struct:SkPtrSet::Pair
73 // ptr and its ID/fIndex explicitly, since the ptr's position in the array
H A DSkRecordDraw.cpp20 fIndex += r.skip;
H A DSkRecordDraw.h23 : fInitialCTM(canvas->getTotalMatrix()), fCanvas(canvas), fIndex(0) {}
25 unsigned index() const { return fIndex; }
26 void next() { ++fIndex; }
39 // It may update fIndex directly to skip more than just this one command.
50 unsigned fIndex; member in class:SkRecords::Draw
H A DSkRecordOpts.cpp268 Pair pair = { fIndex, push };
276 SkASSERT(fIndex > push.index);
277 unsigned skip = fIndex - push.index;
285 for (fRecord = record, fIndex = 0; fIndex < record->count(); fIndex++) {
286 fRecord->mutate<void>(fIndex, *this);
298 unsigned fIndex; member in class:CullAnnotator
/external/skia/src/gpu/effects/
H A DGrTextureDomain.cpp16 : fIndex(index) {
62 if (textureDomain.fIndex >= 0) {
63 uniName.appendS32(textureDomain.fIndex);
H A DGrTextureDomain.h126 int fIndex; member in class:GrTextureDomain
/external/skia/src/gpu/gl/
H A DGrGLShaderBuilder.cpp963 if (attrib->fIndex == attributeIndex) {
1065 GL_CALL(BindAttribLocation(programId, attrib->fIndex, attrib->fName.c_str()));
H A DGrGLShaderBuilder.h488 fIndex = index; fName = name;
490 int fIndex; member in struct:GrGLFullShaderBuilder::AttributePair
/external/skia/src/pathops/
H A DSkIntersectionHelper.h25 return fContour->addCoincident(fIndex, other.fContour, other.fIndex, ts, swap);
31 fContour->addOtherT(fIndex, index, otherT, otherIndex);
36 return fContour->addPartialCoincident(fIndex, other.fContour, other.fIndex, ts, index,
46 return fContour->addT(fIndex, other.fContour, other.fIndex, pt, newT);
50 return fContour->addSelfT(fIndex, pt, newT);
54 return ++fIndex < fLast;
59 fContour->alignTPt(fIndex, othe
154 int fIndex; member in class:SkIntersectionHelper
[all...]
/external/skia/src/pdf/
H A DSkPDFFont.cpp660 if (fIndex >= fMap->count()) {
663 return &((*fMap)[fIndex++]);
668 fIndex = 0;
H A DSkPDFFont.h57 mutable int fIndex; member in class:SkPDFGlyphSetMap::F2BIter
/external/skia/src/ports/
H A DSkTypeface_win_dw.cpp128 : fIndex(0), fStrings(strings)
132 if (fIndex >= fStrings->GetCount()) {
138 HRBM(fStrings->GetStringLength(fIndex, &stringLength), "Could not get string length.");
142 HRBM(fStrings->GetString(fIndex, wString.get(), stringLength), "Could not get string.");
148 HRBM(fStrings->GetLocaleNameLength(fIndex, &localeLength), "Could not get locale length.");
152 HRBM(fStrings->GetLocaleName(fIndex, wLocale.get(), localeLength), "Could not get locale.");
156 ++fIndex;
161 UINT32 fIndex; member in class:LocalizedStrings_IDWriteLocalizedStrings
/external/skia/src/sfnt/
H A DSkOTTable_name.cpp447 if (fIndex >= nameRecordsCount) {
451 nameRecord = &nameRecords[fIndex];
452 ++fIndex;
H A DSkOTTable_name.h552 Iterator(const SkOTTableName& name) : fName(name), fIndex(0), fType(-1) { }
554 : fName(name), fIndex(0), fType(type)
558 fIndex = 0;
571 size_t fIndex; member in class:SkOTTableName::Iterator
/external/skia/src/utils/
H A DSkNWayCanvas.cpp43 fIndex = 0;
46 if (fIndex < fList.count()) {
47 fCanvas = fList[fIndex++];
56 int fIndex; member in class:SkNWayCanvas::Iter
/external/skia/src/utils/debugger/
H A DSkDebugCanvas.cpp24 , fIndex(0)
250 if (fIndex < index && !fFilter && !fMegaVizMode && !pathOpsMode) {
251 i = fIndex + 1;
366 fIndex = index;
H A DSkDebugCanvas.h269 int fIndex; member in class:SkDebugCanvas
/external/skia/tests/
H A DPathOpsSkpClipTest.cpp679 , fIndex(0)
753 } else if (fIndex < fResults.count()) {
754 *result = fResults[fIndex++];
765 int fIndex; member in class:PreParser
H A DSkpSkGrTest.cpp488 , fIndex(0)
552 if (fIndex < fResults.count()) {
553 *result = fResults[fIndex++];
565 int fIndex; member in class:PreParser

Completed in 1624 milliseconds

123