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

  /external/skia/src/core/
SkPtrRecorder.cpp 12 Pair* p = fList.begin();
13 Pair* stop = fList.end();
18 fList.reset();
30 int count = fList.count();
34 int index = SkTSearch<Pair>(fList.begin(), count, pair, sizeof(pair), &Cmp);
38 return fList[index].fIndex;
46 int count = fList.count();
50 int index = SkTSearch<Pair>(fList.begin(), count, pair, sizeof(pair), &Cmp);
55 *fList.insert(index) = pair;
58 return fList[index].fIndex
    [all...]
SkEdgeBuilder.h 25 SkEdge** edgeList() { return fList.begin(); }
29 SkTDArray<SkEdge*> fList;
SkEdgeBuilder.cpp 26 fList.push(edge);
35 fList.push(edge);
44 fList.push(edge);
83 fList.reset();
158 return fList.count();
  /external/skia/include/gpu/
GrClip.h 42 int getElementCount() const { return fList.count(); }
44 GrClipType getElementType(int i) const { return fList[i].fType; }
47 GrAssert(kPath_ClipType == fList[i].fType);
48 return fList[i].fPath;
52 GrAssert(kPath_ClipType == fList[i].fType);
53 return fList[i].fPathFill;
57 GrAssert(kRect_ClipType == fList[i].fType);
58 return fList[i].fRect;
61 GrSetOp getOp(int i) const { return fList[i].fOp; }
64 if (1 == fList.count() && kRect_ClipType == fList[0].fType &&
    [all...]
  /external/skia/src/gpu/
GrClip.cpp 38 fList = src.fList;
45 fList.reset();
51 fList.reset();
56 fList.push_back();
57 fList.back().fRect = r;
58 fList.back().fType = kRect_ClipType;
59 fList.back().fOp = kReplace_SetOp;
66 fList.reset();
71 fList.push_back()
    [all...]
GrTLList.h 47 GrTDLList<Child> fList;
  /external/skia/src/utils/
SkNWayCanvas.cpp 23 *fList.append() = canvas;
28 int index = fList.find(canvas);
31 fList.removeShuffle(index);
36 fList.unrefAll();
37 fList.reset();
45 Iter(const SkTDArray<SkCanvas*>& list) : fList(list) {
49 if (fIndex < fList.count()) {
50 fCanvas = fList[fIndex++];
58 const SkTDArray<SkCanvas*>& fList;
64 Iter iter(fList);
    [all...]
  /external/skia/src/effects/
SkGroupShape.cpp 17 return fList.count();
21 if ((unsigned)index < (unsigned)fList.count()) {
22 const Rec& rec = fList[index];
32 int count = fList.count();
42 rec = fList.append();
44 rec = fList.insert(index);
51 if ((unsigned)index < (unsigned)fList.count()) {
52 Rec& rec = fList[index];
55 fList.remove(index);
60 Rec* rec = fList.begin()
    [all...]
  /external/skia/include/core/
SkPtrRecorder.h 41 int count() const { return fList.count(); }
72 SkTDArray<Pair> fList;
  /external/skia/samplecode/
SampleDraw.cpp 262 SkTDArray<Draw*> fList;
270 fList.unrefAll();
285 Draw** first = fList.begin();
286 for (Draw** iter = fList.end(); iter > first;) {
315 for (Draw** iter = fList.begin(); iter < fList.end(); iter++) {
324 for (Draw** iter = fList.begin(); iter < fList.end(); iter++) {
343 *fList.append() = fDraw;
361 for (Draw** iter = fList.begin(); iter < fList.end(); iter++)
    [all...]
  /external/skia/src/ports/
SkFontHost_android.cpp 432 SkTDArray<FallbackFontRec> fList;
475 SkDebugf("gSystemFonts.count()=%d defaultFallbackList->fList.count()=%d",
476 gSystemFonts.count(), defaultFallbackList->fList.count());
609 fallbackList->fList.push(fallbackRec);
620 fallbackList->fList.push(fallbackRec);
643 int numDefaultFonts = defaultList->fList.count();
646 SkFontID fontID = defaultList->fList[fontIdx].fFontID;
654 thisList->fList.push(defaultList->fList[fontIdx]);
816 for (int i = 0; i < currentFallbackList->fList.count(); i++)
    [all...]
  /external/skia/include/effects/
SkGroupShape.h 154 SkTDArray<Rec> fList;
  /external/skia/src/views/
SkListView.cpp 139 fList = NULL;
142 ItemRec* rec = fList = new ItemRec[count];
164 delete[] fList;
175 *left = fList[index].fLabel;
177 *right = fList[index].fType == kDir_Type ? fDirTail : fList[index].fTail;
183 if (fList[index].fType == kDir_Type)
186 evt->setType(fList[index].fTarget);
190 if (fList[index].fType == kToggle_Type)
191 fList[index].fTail.swap(fList[index].fAltTail)
    [all...]
  /external/skia/include/utils/
SkNWayCanvas.h 75 SkTDArray<SkCanvas*> fList;
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppCacheTest.java 63 String fList[] = testDir.list();
64 for(int i = 0; i < fList.length; i++) {
65 File file = new File(testDir, fList[i]);
67 cleanUpDirectory(testDir, fList[i]);
81 String fList[] = testDir.list();
82 if(fList == null) {
86 for(int i = 0; i < fList.length; i++) {
87 File file = new File(testDir, fList[i]);
89 cleanUpDirectory(testDir, fList[i]);
  /frameworks/base/services/java/com/android/server/am/
UsageStatsService.java 256 String fList[] = parentDir.list();
257 if (fList != null) {
259 int i = fList.length;
262 if (fList[i].startsWith(prefix)) {
263 Slog.i(TAG, "Deleting old usage file: " + fList[i]);
264 (new File(parentDir, fList[i])).delete();
423 String fList[] = mDir.list();
424 if (fList == null) {
428 for (String file : fList) {
    [all...]
  /cts/tools/vm-tests-tf/lib/
junit.jar 
  /external/dexmaker/lib/
junit.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
junit.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
org.eclipse.debug.core_3.6.0.v20100519.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 423 milliseconds