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/
GrSKSLPrettyPrint.cpp 32 fIndex = 0;
36 while (fLength > fIndex) {
71 } else if ('{' == fInput[fIndex]) {
76 } else if ('}' == fInput[fIndex]) {
87 } else if ('\t' == fInput[fIndex] || '\n' == fInput[fIndex] ||
88 (fFreshline && ' ' == fInput[fIndex])) {
89 fIndex++;
91 this->appendChar(fInput[fIndex]);
101 fPretty.appendf("%c", fInput[fIndex++])
    [all...]
GrDrawOpAtlas.h 193 uint32_t index() const { return fIndex; }
233 return new Plot(fIndex, fGenID + 1, fX, fY, fWidth, fHeight, fConfig);
245 const uint32_t fIndex;
GrDrawOpAtlas.cpp 60 , fIndex(index)
62 , fID(CreateId(fIndex, fGenID))
150 fID = CreateId(fIndex, fGenID);
  /external/skia/src/sksl/ir/
SkSLIndexExpression.h 50 , fIndex(std::move(index)) {
51 ASSERT(fIndex->fType == *context.fInt_Type || fIndex->fType == *context.fUInt_Type);
55 return fBase->hasSideEffects() || fIndex->hasSideEffects();
59 return fBase->description() + "[" + fIndex->description() + "]";
63 std::unique_ptr<Expression> fIndex;
SkSLLayout.h 107 , fIndex(index)
126 , fIndex(-1)
155 if (fIndex >= 0) {
156 result += separator + "index = " + to_string(fIndex);
257 fIndex == other.fIndex &&
277 int fIndex;
  /external/skia/src/core/
SkPtrRecorder.h 67 , fIndex(0) {}
73 return fIndex < fSet.fList.count() ? fSet.fList[fIndex++].fPtr : nullptr;
78 int fIndex;
88 uint32_t fIndex; // 1...N
93 // ptr and its ID/fIndex explicitly, since the ptr's position in the array
SkPtrRecorder.cpp 37 return fList[index].fIndex;
53 pair.fIndex = count + 1;
57 return fList[index].fIndex;
66 // p->fIndex is base-1, so we need to subtract to find its slot
68 int index = p[i].fIndex - 1;
SkFontDescriptor.h 20 : fStream(std::move(stream)), fIndex(index), fAxisCount(axisCount), fAxis(axisCount)
28 , fIndex(that.fIndex)
40 int getIndex() const { return fIndex; }
46 int fIndex;
  /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 17 , fIndex(-1) { }
29 fIndex = fDebugCanvas->getSize() - 1;
  /external/icu/icu4c/source/i18n/
regeximp.cpp 68 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) {
82 if (fIndex >= fLimit) {
85 U16_NEXT(fChars, fIndex, fLimit, originalC);
115 return fIndex;
  /external/skia/tools/
DumpRecord.cpp 23 , fIndex(0)
84 printf("%*d ", fDigits, fIndex++);
104 printf("%*d ", fDigits, fIndex++);
129 int fIndex;
  /external/skia/src/utils/
SkMultiPictureDocument.cpp 146 int fIndex = 0;
152 if (fIndex < fCount) {
153 SkRect bounds = SkRect::MakeSize(fDst[fIndex].fSize);
160 if (fIndex < fCount) {
161 fDst[fIndex].fPicture = fRecorder.finishRecordingAsPicture();
162 ++fIndex;
190 if (canvas.fIndex != dstArrayCount) {
SkNWayCanvas.cpp 38 fIndex = 0;
41 if (fIndex < fList.count()) {
42 fCanvas = fList[fIndex++];
51 int fIndex;
  /external/skia/tests/
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);
167 dummy->fIndex = -1;
178 dummy->fIndex = -1;
188 REPORTER_ASSERT(reporter, i <= pqTest.at(i)->fIndex);
PathOpsConicIntersectionTest.cpp 247 for (int fIndex = 0; fIndex < frameSize; ++fIndex) {
248 const SkDConic& dC = frames[index][fIndex];
276 for (int fIndex = 0; fIndex < frameSize; ++fIndex) {
277 const SkDConic& dC = frames[index][fIndex];
284 if (fIndex < 2) {
  /external/skia/samplecode/
PerlinPatch.cpp 169 int fIndex;
170 PtClick(SkView* view, int index) : Click(view), fIndex(index) {}
198 if (ptClick->fIndex >= 0) {
199 fPts[ptClick->fIndex].set(click->fCurr.fX , click->fCurr.fY );
200 } else if (-1 == ptClick->fIndex) {
205 } else if (-2 == ptClick->fIndex) {
  /external/skia/src/ports/
SkTypeface_win_dw.cpp 141 : fIndex(0), fStrings(strings)
145 if (fIndex >= fStrings->GetCount()) {
151 HRBM(fStrings->GetStringLength(fIndex, &stringLen), "Could not get string length.");
154 HRBM(fStrings->GetString(fIndex, wString.get(), stringLen+1), "Could not get string.");
160 HRBM(fStrings->GetLocaleNameLength(fIndex, &localeLen), "Could not get locale length.");
163 HRBM(fStrings->GetLocaleName(fIndex, wLocale.get(), localeLen+1), "Could not get locale.");
167 ++fIndex;
172 UINT32 fIndex;
SkFontMgr_android_parser.h 70 FontFileInfo() : fIndex(0), fWeight(0), fStyle(Style::kAuto) { }
73 int fIndex;
SkFontMgr_custom.h 39 const int fIndex;
  /external/skia/src/gpu/ops/
GrAAConvexTessellator.h 138 pt->fIndex = index;
145 fPts[i].fOrigEdgeId = fPts[i].fIndex;
155 int index(int index) const { return fPts[index].fIndex; }
172 int fIndex;
GrAAConvexTessellator.cpp 840 fPts[cur].fNorm = tess.point(fPts[next].fIndex) - tess.point(fPts[cur].fIndex);
    [all...]
  /external/skia/src/pipe/
SkPipeCanvas.h 30 return curr->fIndex;
40 rec->fIndex = fNextIndex++;
41 return rec->fIndex;
47 int fIndex;
  /external/skia/src/sksl/
SkSLCPPCodeGenerator.cpp 82 if (i.fIndex->fKind != Expression::kIntLiteral_Kind) {
83 fErrors.error(i.fIndex->fPosition,
87 int64_t index = ((IntLiteral&) *i.fIndex).fValue;
99 if (i.fIndex->fKind != Expression::kIntLiteral_Kind) {
100 fErrors.error(i.fIndex->fPosition,
104 int64_t index = ((IntLiteral&) *i.fIndex).fValue;
  /external/icu/icu4c/source/common/
uresimp.h 77 int32_t fIndex;

Completed in 1377 milliseconds

1 2