/external/skia/src/gpu/gl/builders/ |
D | GrGLSLPrettyPrint.cpp | 35 fIndex = 0; in prettify() 39 while (fLength > fIndex) { in prettify() 73 } else if ('{' == fInput[fIndex]) { in prettify() 78 } else if ('}' == fInput[fIndex]) { in prettify() 89 } else if ('\t' == fInput[fIndex] || '\n' == fInput[fIndex] || in prettify() 90 (fFreshline && ' ' == fInput[fIndex])) { in prettify() 91 fIndex++; in prettify() 93 this->appendChar(fInput[fIndex]); in prettify() 102 fPretty.appendf("%c", fInput[fIndex++]); in appendChar() 109 size_t i = fIndex; in hasToken() [all …]
|
/external/skia/src/gpu/ |
D | GrRecordReplaceDraw.cpp | 73 , fIndex(0) in ReplaceDraw() 100 for (fIndex = 0; fIndex < fOps.count(); ++fIndex) { in draw() 105 record->visit<void>(fOps[fIndex], *this); in draw() 109 for (fIndex = 0; fIndex < (int) record->count(); ++fIndex) { in draw() 114 record->visit<void>(fIndex, *this); in draw() 129 drawPictureOffset = fOps[fIndex]; in operator ()() 131 drawPictureOffset = fIndex; in operator ()() 154 startOffset = fOps[fIndex]; in operator ()() 156 startOffset = fIndex; in operator ()() 172 while (fOps[fIndex] < layer->stop()) { in operator ()() [all …]
|
D | GrAAConvexTessellator.cpp | 647 fPts[cur].fNorm = tess.point(fPts[next].fIndex) - tess.point(fPts[cur].fIndex); in computeNormals() 675 SkPoint prev = tess.point(fPts[0].fIndex) - tess.point(fPts.top().fIndex); in isConvex() 676 SkPoint cur = tess.point(fPts[1].fIndex) - tess.point(fPts[0].fIndex); in isConvex() 684 cur = tess.point(fPts[next].fIndex) - tess.point(fPts[i].fIndex); in isConvex() 807 tess.point(fPts[cur].fIndex), in draw() 808 tess.point(fPts[next].fIndex), in draw() 811 SkPoint mid = tess.point(fPts[cur].fIndex) + tess.point(fPts[next].fIndex); in draw() 825 draw_arrow(canvas, tess.point(fPts[cur].fIndex), fPts[cur].fBisector, in draw()
|
D | GrBatchAtlas.cpp | 43 int index() const { return fIndex; } in index() 113 fID = create_id(fIndex, fGenID); in resetRects() 131 , fIndex(-1) in BatchPlot() 158 fIndex = index; in init() 178 uint32_t fIndex; member in BatchPlot
|
D | GrAAConvexTessellator.h | 130 pt->fIndex = index; in addIdx() 140 int index(int index) const { return fPts[index].fIndex; } in index() 156 int fIndex; member
|
/external/skia/src/core/ |
D | SkPtrRecorder.h | 68 , fIndex(0) {} in Iter() 74 return fIndex < fSet.fList.count() ? fSet.fList[fIndex++].fPtr : NULL; in next() 79 int fIndex; variable 89 uint32_t fIndex; // 1...N member
|
D | SkPtrRecorder.cpp | 38 return fList[index].fIndex; in find() 54 pair.fIndex = count + 1; in add() 58 return fList[index].fIndex; in add() 69 int index = p[i].fIndex - 1; in copyToArray()
|
D | SkPictureFlat.h | 316 int index() const { return fIndex; } in index() 345 void setIndex(int index) { fIndex = index; } in setIndex() 351 fIndex = index; in stampHeader() 357 int fIndex; variable
|
/external/skia/tools/ |
D | bench_pictures_main.cpp | 116 for (size_t fIndex = 0; fIndex < kFilterFlagsCount; ++fIndex) { in filtersName() local 118 if (all & (1 << fIndex)) { in filtersName() 122 if (drawFilters[tIndex] & (1 << fIndex)) { in filtersName() 133 result += gFilterFlags[fIndex]; in filtersName() 270 for (size_t fIndex = 0; fIndex < kFilterFlagsCount; ++fIndex) { in setup_benchmark() local 271 if (flagLen == strlen(gFilterFlags[fIndex]) in setup_benchmark() 272 && !strncmp(colon + 1, gFilterFlags[fIndex], flagLen)) { in setup_benchmark() 273 flag = 1 << fIndex; in setup_benchmark()
|
D | DumpRecord.cpp | 23 , fIndex(0) in Dumper() 72 printf("%*d ", fDigits, fIndex++); in printNameAndTime() 97 int fIndex; member in __anonf0e155ee0111::Dumper
|
/external/skia/debugger/ |
D | SkDebugger.h | 26 fIndex = index; in setIndex() 29 if (fIndex >= 0) { in draw() 30 fDebugCanvas->drawTo(canvas, fIndex); in draw() 93 return fIndex; in index() 129 int fIndex; variable
|
D | SkDebugger.cpp | 16 , fIndex(-1) { in SkDebugger() 36 fIndex = fDebugCanvas->getSize() - 1; in loadPicture()
|
/external/icu/icu4c/source/i18n/ |
D | regeximp.cpp | 66 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) { in CaseFoldingUCharIterator() 80 if (fIndex >= fLimit) { in next() 83 U16_NEXT(fChars, fIndex, fLimit, originalC); in next() 113 return fIndex; in getIndex()
|
/external/skia/src/ports/ |
D | SkTypeface_win_dw.cpp | 137 : fIndex(0), fStrings(strings) in LocalizedStrings_IDWriteLocalizedStrings() 141 if (fIndex >= fStrings->GetCount()) { in next() 147 HRBM(fStrings->GetStringLength(fIndex, &stringLen), "Could not get string length."); in next() 150 HRBM(fStrings->GetString(fIndex, wString.get(), stringLen+1), "Could not get string."); in next() 156 HRBM(fStrings->GetLocaleNameLength(fIndex, &localeLen), "Could not get locale length."); in next() 159 HRBM(fStrings->GetLocaleName(fIndex, wLocale.get(), localeLen+1), "Could not get locale."); in next() 163 ++fIndex; in next() 168 UINT32 fIndex; member in LocalizedStrings_IDWriteLocalizedStrings
|
D | SkFontConfigParser_android.h | 65 FontFileInfo() : fIndex(0), fWeight(0), fStyle(Style::kAuto) { } in FontFileInfo() 68 int fIndex; member
|
D | SkFontMgr_android.cpp | 35 , fIndex(index) in SkTypeface_Android() 43 int fIndex; member in SkTypeface_Android 69 desc->setFontIndex(fIndex); in onGetFontDescriptor() 73 *ttcIndex = fIndex; in onOpenStream() 103 *ttcIndex = fIndex; in onOpenStream() 136 const int ttcIndex = fontFile.fIndex; in SkFontStyleSet_Android()
|
D | SkFontHost_linux.cpp | 30 , fIsSysFont(sysFont), fFamilyName(familyName), fIndex(index) in SkTypeface_Custom() 42 desc->setFontIndex(fIndex); in onGetFontDescriptor() 46 int getIndex() const { return fIndex; } in getIndex() 51 const int fIndex; member in SkTypeface_Custom
|
/external/skia/tests/ |
D | TDPQueueTest.cpp | 70 mutable int fIndex; member 73 static int* PQIndex(Dummy* const& dummy) { return &dummy->fIndex; } in PQIndex() 94 dummy->fIndex = -1; in random_test() 109 REPORTER_ASSERT(reporter, -1 != array[j].fIndex); in random_test()
|
D | PathOpsSkpClipTest.cpp | 570 while (++fIndex < kMaxDir) { in next() 571 if (fRun[fIndex]) { in next() 572 return fIndex; in next() 579 fIndex = -1; in reset() 600 int fIndex; member in Dirs 607 : fIndex(-1) { in Filenames() 611 while (fNames && ++fIndex < fNames->count()) { in next() 612 return (*fNames)[fIndex]; in next() 622 int fIndex; member in Filenames
|
/external/skia/src/sfnt/ |
D | SkOTTable_name.cpp | 447 if (fIndex >= nameRecordsCount) { in next() 451 nameRecord = &nameRecords[fIndex]; in next() 452 ++fIndex; in next()
|
D | SkOTTable_name.h | 552 Iterator(const SkOTTableName& name) : fName(name), fIndex(0), fType(-1) { } in Iterator() 554 : fName(name), fIndex(0), fType(type) in Iterator() 558 fIndex = 0; in reset() 571 size_t fIndex; member
|
/external/skia/src/utils/ |
D | SkNWayCanvas.cpp | 43 fIndex = 0; in Iter() 46 if (fIndex < fList.count()) { in next() 47 fCanvas = fList[fIndex++]; in next() 56 int fIndex; member in SkNWayCanvas::Iter
|
/external/skia/src/gpu/effects/ |
D | GrTextureDomain.cpp | 16 : fIndex(index) { in GrTextureDomain() 56 if (textureDomain.fIndex >= 0) { in sampleTexture() 57 uniName.appendS32(textureDomain.fIndex); in sampleTexture()
|
/external/icu/icu4c/source/common/ |
D | uresbund.cpp | 1174 resB->fIndex = -1; in init_resb_result() 1437 resB->fIndex = -1; in ures_resetIterator() 1444 return (UBool)(resB->fIndex < resB->fSize-1); in ures_hasNext() 1458 if(resB->fIndex == resB->fSize-1) { in ures_getNextString() 1461 resB->fIndex++; in ures_getNextString() 1469 r = res_getTableItemByIndex(&(resB->fResData), resB->fRes, resB->fIndex, key); in ures_getNextString() 1473 return ures_getStringWithAlias(resB, r, resB->fIndex, len, status); in ures_getNextString() 1476 r = res_getArrayItem(&(resB->fResData), resB->fRes, resB->fIndex); in ures_getNextString() 1480 return ures_getStringWithAlias(resB, r, resB->fIndex, len, status); in ures_getNextString() 1482 return ures_getStringWithAlias(resB, resB->fRes, resB->fIndex, len, status); in ures_getNextString() [all …]
|
/external/skia/samplecode/ |
D | SamplePathFuzz.cpp | 675 fIndex = 0; in onOnceBeforeDraw() 679 path_fuzz_stroker(&offscreen, fIndex); in onOnceBeforeDraw() 695 path_fuzz_stroker(&offscreen, fIndex += 100); in onDrawContent() 702 int fIndex; member in PathFuzzView
|