Searched refs:fIndex (Results 1 - 25 of 74) sorted by path

123

/external/chromium_org/third_party/icu/source/common/
H A Duresbund.cpp1088 resB->fIndex = -1;
1351 resB->fIndex = -1;
1358 return (UBool)(resB->fIndex < resB->fSize-1);
1372 if(resB->fIndex == resB->fSize-1) {
1375 resB->fIndex++;
1383 r = res_getTableItemByIndex(&(resB->fResData), resB->fRes, resB->fIndex, key);
1387 return ures_getStringWithAlias(resB, r, resB->fIndex, len, status);
1390 r = res_getArrayItem(&(resB->fResData), resB->fRes, resB->fIndex);
1394 return ures_getStringWithAlias(resB, r, resB->fIndex, len, status);
1396 return ures_getStringWithAlias(resB, resB->fRes, resB->fIndex, le
[all...]
H A Duresimp.h86 int32_t fIndex; member in struct:UResourceBundle
/external/chromium_org/third_party/icu/source/i18n/
H A Dregeximp.cpp66 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;
H A Dregeximp.h411 int64_t fIndex; member in class:CaseFoldingUCharIterator
/external/chromium_org/third_party/skia/debugger/
H A DSkDebugger.cpp18 fIndex = 0;
36 fIndex = fDebugCanvas->getSize() - 1;
H A DSkDebugger.h26 fIndex = index;
29 if (fIndex > 0) {
30 fDebugCanvas->drawTo(canvas, fIndex);
99 return fIndex;
135 int fIndex; member in class:SkDebugger
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DSimplify.cpp5240 fContour->addCoincident(fIndex, other.fContour, other.fIndex, ts, swap);
5246 fContour->addOtherT(fIndex, index, otherT, otherIndex);
5255 return fContour->addT(fIndex, other.fContour, other.fIndex, pt, newT);
5259 return fContour->addSelfT(fIndex, other.fContour, other.fIndex, pt, newT);
5263 return fContour->addUnsortableT(fIndex, other.fContour, other.fIndex, start, pt, newT);
5267 return ++fIndex < fLas
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DSampleFatBits.cpp379 int fIndex; member in class:IndexClick
381 IndexClick(SkView* v, int index) : SkView::Click(v), fIndex(index) {}
384 return ((IndexClick*)click)->fIndex;
H A DSamplePatch.cpp325 int fIndex; member in class:PatchView::PtClick
326 PtClick(SkView* view, int index) : Click(view), fIndex(index) {}
346 fPts[((PtClick*)click)->fIndex].set(click->fCurr.fX - DX, click->fCurr.fY - DY);
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/chromium_org/third_party/skia/src/core/
H A DSkPictureFlat.h317 int index() const { return fIndex; }
346 void setIndex(int index) { fIndex = index; }
352 fIndex = index;
358 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 , fIndex(0) {}
74 return fIndex < fSet.fList.count() ? fSet.fList[fIndex++].fPtr : NULL;
79 int fIndex; member in class:SkPtrSet::Iter
89 uint32_t fIndex; // 1...N member in struct:SkPtrSet::Pair
94 // ptr and its ID/fIndex explicitly, since the ptr's position in the array
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrTextureDomain.cpp17 : fIndex(index) {
57 if (textureDomain.fIndex >= 0) {
58 uniName.appendS32(textureDomain.fIndex);
H A DGrTextureDomain.h135 int fIndex; member in class:GrTextureDomain
/external/chromium_org/third_party/skia/src/gpu/gl/builders/
H A DGrGLSLPrettyPrint.cpp17 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
164 size_t fIndex, fLength; member in class:GrGLSLPrettyPrint::GLSLPrettyPrint
[all...]
H A DGrGLVertexShaderBuilder.h64 fIndex = index; fName = name;
66 int fIndex; member in struct:GrGLVertexShaderBuilder::AttributePair
/external/chromium_org/third_party/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/chromium_org/third_party/skia/src/pdf/
H A DSkPDFFont.cpp674 if (fIndex >= fMap->count()) {
677 return &((*fMap)[fIndex++]);
682 fIndex = 0;
H A DSkPDFFont.h57 mutable int fIndex; member in class:SkPDFGlyphSetMap::F2BIter
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontConfigParser_android.cpp351 newFileInfo.fIndex = value;
H A DSkFontConfigParser_android.h63 FontFileInfo() : fIndex(0), fWeight(0) { }
66 int fIndex; member in struct:FontFileInfo
H A DSkFontHost_linux.cpp36 , fIsSysFont(sysFont), fFamilyName(familyName), fIndex(index)
51 desc->setFontIndex(fIndex);
55 int getIndex() const { return fIndex; }
60 const int fIndex; member in class:SkTypeface_Custom
H A DSkFontMgr_android.cpp49 , fIndex(index)
57 int fIndex; member in class:SkTypeface_Android
84 desc->setFontIndex(fIndex);
88 *ttcIndex = fIndex;
119 *ttcIndex = fIndex;
159 const int ttcIndex = fontFile.fIndex;

Completed in 3334 milliseconds

123