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

  /external/skia/samplecode/
SampleFilter2.cpp 24 int fCurrIndex;
40 fCurrIndex = 0;
54 str.append(gNames[fCurrIndex]);
SampleImageDir.cpp 123 int fCurrIndex;
171 fCurrIndex = 0;
263 canvas->drawBitmap(fBitmaps[fCurrIndex], x, y, &paint);
266 fCurrIndex += 1;
267 if (fCurrIndex >= fBitmapCount) {
268 fCurrIndex = 0;
277 fCurrIndex += 1;
278 if (fCurrIndex >= fBitmapCount)
279 fCurrIndex = 0;
SampleApp.cpp 282 int fCurrIndex;
485 fCurrIndex = 0;
486 this->loadView(fSamples[fCurrIndex]());
947 fCurrIndex = (fCurrIndex + 1) % fSamples.count();
948 this->loadView(fSamples[fCurrIndex]());
961 fCurrIndex = evt.getFast32() % fSamples.count();
962 this->loadView(fSamples[fCurrIndex]());
    [all...]
  /external/skia/src/images/
SkMovie_gif.cpp 39 int fCurrIndex;
60 fCurrIndex = -1;
112 fCurrIndex = i;
113 return fLastDrawIndex != fCurrIndex;
116 fCurrIndex = fGIF->ImageCount - 1;
358 if (fLastDrawIndex >= 0 && fLastDrawIndex == fCurrIndex) {
378 } else if (startIndex > fCurrIndex) {
383 int lastIndex = fCurrIndex;
  /external/skia/include/views/
SkWidget.h 362 int getSelection() const { return fCurrIndex; }
406 int fCurrIndex; // logical index
434 int getSelection() const { return fCurrIndex; }
462 int fCurrIndex; // logical index
SkWidgetViews.h 230 int getSelection() const { return fCurrIndex; }
289 int16_t fScrollIndex, fCurrIndex;
  /external/skia/src/core/
SkDraw.cpp     [all...]

Completed in 2129 milliseconds