HomeSort by relevance Sort by last modified time
    Searched refs:fCurrIndex (Results 1 - 10 of 10) sorted by null

  /external/skia/src/views/
SkListWidget.cpp 28 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...]
SkListView.cpp 214 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 - fVisibleRowCount + 1
    [all...]
  /external/skia/samplecode/
SampleImageDir.cpp 134 int fCurrIndex;
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;
SampleFilter2.cpp 31 int fCurrIndex;
47 fCurrIndex = 0;
61 str.append(gNames[fCurrIndex]);
SampleApp.cpp 705 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])());
    [all...]
SampleApp.h 124 int fCurrIndex;
  /external/skia/src/images/
SkMovie_gif.cpp 31 int fCurrIndex;
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/
SkWidgetViews.h 223 int getSelection() const { return fCurrIndex; }
282 int16_t fScrollIndex, fCurrIndex;
SkWidget.h 355 int getSelection() const { return fCurrIndex; }
399 int fCurrIndex; // logical index
427 int getSelection() const { return fCurrIndex; }
455 int fCurrIndex; // logical index
  /external/skia/src/core/
SkDraw.cpp     [all...]

Completed in 122 milliseconds