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

1 2

  /external/chromium_org/third_party/skia/src/gpu/gl/builders/
GrGLVertexShaderBuilder.h 64 fIndex = index; fName = name;
66 int fIndex;
GrGLSLPrettyPrint.cpp 17 fIndex = 0;
28 while (fLength > fIndex) {
57 } else if ('{' == fInput[fIndex]) {
62 } else if ('}' == fInput[fIndex]) {
73 } else if ('\t' == fInput[fIndex] || '\n' == fInput[fIndex] ||
74 (fFreshline && ' ' == fInput[fIndex])) {
75 fIndex++;
77 this->appendChar(input[fIndex]);
85 fPretty.appendf("%c", fInput[fIndex++])
    [all...]
  /external/chromium_org/third_party/skia/tools/
DumpRecord.cpp 23 , fIndex(0)
72 printf("%*d ", fDigits, fIndex++);
97 int fIndex;
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_linux.cpp 36 , fIsSysFont(sysFont), fFamilyName(familyName), fIndex(index)
51 desc->setFontIndex(fIndex);
55 int getIndex() const { return fIndex; }
60 const int fIndex;
SkFontConfigParser_android.h 63 FontFileInfo() : fIndex(0), fWeight(0) { }
66 int fIndex;
SkTypeface_win_dw.cpp 137 : fIndex(0), fStrings(strings)
141 if (fIndex >= fStrings->GetCount()) {
147 HRBM(fStrings->GetStringLength(fIndex, &stringLen), "Could not get string length.");
150 HRBM(fStrings->GetString(fIndex, wString.get(), stringLen+1), "Could not get string.");
156 HRBM(fStrings->GetLocaleNameLength(fIndex, &localeLen), "Could not get locale length.");
159 HRBM(fStrings->GetLocaleName(fIndex, wLocale.get(), localeLen+1), "Could not get locale.");
163 ++fIndex;
168 UINT32 fIndex;
SkFontMgr_android.cpp 49 , fIndex(index)
57 int fIndex;
84 desc->setFontIndex(fIndex);
88 *ttcIndex = fIndex;
119 *ttcIndex = fIndex;
159 const int ttcIndex = fontFile.fIndex;
  /external/chromium_org/third_party/skia/debugger/
SkDebugger.h 26 fIndex = index;
29 if (fIndex > 0) {
30 fDebugCanvas->drawTo(canvas, fIndex);
99 return fIndex;
135 int fIndex;
  /external/chromium_org/third_party/skia/src/core/
SkPtrRecorder.h 68 , fIndex(0) {}
74 return fIndex < fSet.fList.count() ? fSet.fList[fIndex++].fPtr : NULL;
79 int fIndex;
89 uint32_t fIndex; // 1...N
94 // ptr and its ID/fIndex explicitly, since the ptr's position in the array
SkPictureFlat.h 317 int index() const { return fIndex; }
346 void setIndex(int index) { fIndex = index; }
352 fIndex = index;
358 int fIndex;
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFFont.h 57 mutable int fIndex;
  /external/chromium_org/third_party/icu/source/common/
uresimp.h 86 int32_t fIndex;
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrTextureDomain.h 135 int fIndex;
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersectionHelper.h 25 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, other.fContour, other.fIndex, swap, index, ts, point)
    [all...]
  /external/icu/icu4c/source/common/
uresimp.h 86 int32_t fIndex;
  /external/chromium_org/third_party/skia/samplecode/
SampleRotateCircles.cpp 327 int fIndex;
328 MyClick(SkView* target, int index) : Click(target), fIndex(index) {}
342 int index = ((MyClick*)click)->fIndex;
SamplePatch.cpp 325 int fIndex;
326 PtClick(SkView* view, int index) : Click(view), fIndex(index) {}
346 fPts[((PtClick*)click)->fIndex].set(click->fCurr.fX - DX, click->fCurr.fY - DY);
SampleFatBits.cpp 379 int fIndex;
381 IndexClick(SkView* v, int index) : SkView::Click(v), fIndex(index) {}
384 return ((IndexClick*)click)->fIndex;
SampleSlides.cpp 666 int fIndex;
679 fIndex = 0;
710 gProc[fIndex](canvas);
715 fIndex = (fIndex + 1) % SK_ARRAY_COUNT(gProc);
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_name.h 552 Iterator(const SkOTTableName& name) : fName(name), fIndex(0), fType(-1) { }
554 : fName(name), fIndex(0), fType(type)
558 fIndex = 0;
571 size_t fIndex;
  /external/chromium_org/third_party/skia/src/utils/
SkNWayCanvas.cpp 43 fIndex = 0;
46 if (fIndex < fList.count()) {
47 fCanvas = fList[fIndex++];
56 int fIndex;
  /external/chromium_org/third_party/skia/src/utils/debugger/
SkDebugCanvas.h 262 int fIndex;
  /external/chromium_org/third_party/icu/source/i18n/
regeximp.h 411 int64_t fIndex;
  /external/icu/icu4c/source/i18n/
regeximp.h 398 int64_t fIndex;
  /external/chromium_org/third_party/skia/tests/
SkpSkGrTest.cpp 486 , fIndex(0)
550 if (fIndex < fResults.count()) {
551 *result = fResults[fIndex++];
563 int fIndex;

Completed in 873 milliseconds

1 2