Searched refs:fCurrIndex (Results 1 - 10 of 10) sorted by relevance

/external/skia/src/views/
H A DSkListWidget.cpp28 fCurrIndex = -1; // index of "selected" cell
74 if (fCurrIndex != index)
80 fCurrIndex = index;
90 int index = fCurrIndex;
96 if (fCurrIndex != index)
109 int index = fCurrIndex;
115 if (fCurrIndex != index)
127 if (this->getRowRect(fCurrIndex, &r))
133 if (fSource && (unsigned)fCurrIndex < (unsigned)fSource->countRecords())
135 int index = this->logicalToVisualIndex(fCurrIndex);
[all...]
H A DSkListView.cpp214 fCurrIndex = -1;
246 if (fCurrIndex != index)
249 fCurrIndex = index;
266 int index = fCurrIndex;
279 int index = fCurrIndex;
291 if (this->getRowRect(fCurrIndex, &r))
300 if ((unsigned)fCurrIndex < (unsigned)fSource->countRows())
302 int index = this->logicalToVisualIndex(fCurrIndex);
307 fScrollIndex = fCurrIndex;
309 fScrollIndex = fCurrIndex
[all...]
/external/skia/samplecode/
H A DSampleImageDir.cpp134 int fCurrIndex; member in class:ImageDirView
182 fCurrIndex = 0;
274 canvas->drawBitmap(fBitmaps[fCurrIndex], x, y, &paint);
277 fCurrIndex += 1;
278 if (fCurrIndex >= fBitmapCount) {
279 fCurrIndex = 0;
288 fCurrIndex += 1;
289 if (fCurrIndex >= fBitmapCount)
290 fCurrIndex = 0;
H A DSampleFilter2.cpp31 int fCurrIndex; member in class:Filter2View
47 fCurrIndex = 0;
61 str.append(gNames[fCurrIndex]);
H A DSampleApp.cpp705 fCurrIndex = 0;
707 fCurrIndex = findByTitle(argv[1]);
708 if (fCurrIndex < 0) {
714 fCurrIndex = findByTitle(title.c_str());
718 if (fCurrIndex < 0) {
719 fCurrIndex = 0;
721 this->loadView((*fSamples[fCurrIndex])());
1297 fCurrIndex = (fCurrIndex - 1 + fSamples.count()) % fSamples.count();
1298 SkView* view = (*fSamples[fCurrIndex])();
[all...]
H A DSampleApp.h124 int fCurrIndex; member in class:SampleWindow
/external/skia/src/images/
H A DSkMovie_gif.cpp31 int fCurrIndex; member in class:SkGIFMovie
52 fCurrIndex = -1;
104 fCurrIndex = i;
105 return fLastDrawIndex != fCurrIndex;
108 fCurrIndex = fGIF->ImageCount - 1;
350 if (fLastDrawIndex >= 0 && fLastDrawIndex == fCurrIndex) {
370 } else if (startIndex > fCurrIndex) {
375 int lastIndex = fCurrIndex;
/external/skia/include/views/
H A DSkWidget.h355 int getSelection() const { return fCurrIndex; }
399 int fCurrIndex; // logical index member in class:SkListView
427 int getSelection() const { return fCurrIndex; }
455 int fCurrIndex; // logical index member in class:SkGridView
H A DSkWidgetViews.h223 int getSelection() const { return fCurrIndex; }
282 int16_t fScrollIndex, fCurrIndex; member in class:SkListView
/external/skia/src/core/
H A DSkDraw.cpp2065 fCurrIndex = 0;
2078 int fCurrIndex; member in struct:VertState
2090 int index = state->fCurrIndex;
2097 state->fCurrIndex = index + 3;
2103 int index = state->fCurrIndex;
2110 state->fCurrIndex = index + 3;
2115 int index = state->fCurrIndex;
2127 state->fCurrIndex = index + 1;
2133 int index = state->fCurrIndex;
2145 state->fCurrIndex
[all...]

Completed in 92 milliseconds