Searched refs:fList (Results 1 - 25 of 33) sorted by relevance

12

/external/dng_sdk/source/
H A Ddng_string_list.cpp29 , fList (NULL)
67 DoCopyBytes (fList, list, fCount * (uint32) sizeof (dng_string *));
71 if (fList)
74 free (fList);
78 fList = list;
108 fList [j] = fList [j - 1];
112 fList [index] = ss;
142 if (fList)
148 delete fList [inde
[all...]
H A Ddng_opcode_list.cpp31 : fList ()
53 for (size_t index = 0; index < fList.size (); index++)
56 if (fList [index])
59 delete fList [index];
61 fList [index] = NULL;
67 fList.clear ();
78 fList.swap (otherList.fList);
93 for (size_t index = 0; index < fList.size (); index++)
96 if (includeOptional || !fList [inde
[all...]
H A Ddng_string_list.h35 dng_string **fList; member in class:dng_string_list
50 return *(fList [index]);
55 return *(fList [index]);
H A Ddng_opcode_list.h41 dng_std_vector<dng_opcode *> fList; member in class:dng_opcode_list
59 return fList.size () == 0;
88 return (uint32) fList.size ();
96 return *fList [index];
104 return *fList [index];
H A Ddng_bad_pixels.cpp579 , fList ()
585 fList.Reset (list.Release ());
587 fList->Sort ();
599 , fList ()
618 fList.Reset (new dng_bad_pixel_list);
630 fList->AddPoint (pt);
644 fList->AddRect (r);
648 fList->Sort ();
663 (int) fList->Point (index).v,
664 (int) fList
[all...]
H A Ddng_bad_pixels.h245 AutoPtr<dng_bad_pixel_list> fList; member in class:dng_opcode_FixBadPixelsList
/external/skia/src/core/
H A DSkPtrRecorder.cpp11 Pair* p = fList.begin();
12 Pair* stop = fList.end();
17 fList.reset();
29 int count = fList.count();
33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
37 return fList[index].fIndex;
45 int count = fList.count();
49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
54 *fList.insert(index) = pair;
57 return fList[inde
[all...]
H A DSkTMultiMap.h109 , fList(nullptr) {
111 fList = &(*fIter);
120 SkASSERT(fList);
121 return fList->fValue;
125 if (fList) {
126 fList = fList->fNext;
128 if (!fList) {
131 fList = &(*fIter);
138 const ValueList* fList; member in class:SkTMultiMap::ConstIter
[all...]
H A DSkPtrRecorder.h43 int count() const { return fList.count(); }
73 return fIndex < fSet.fList.count() ? fSet.fList[fIndex++].fPtr : nullptr;
95 SkTDArray<Pair> fList; member in class:SkPtrSet
H A DSkOverdrawCanvas.cpp174 fList[0]->onDrawPatch(cubics, colors, texCoords, blendMode, fPaint);
181 fList[0]->onDrawPaint(this->overdrawPaint(paint));
186 fList[0]->onDrawRect(rect, this->overdrawPaint(paint));
190 fList[0]->onDrawRegion(region, this->overdrawPaint(paint));
194 fList[0]->onDrawOval(oval, this->overdrawPaint(paint));
199 fList[0]->onDrawArc(arc, startAngle, sweepAngle, useCenter, this->overdrawPaint(paint));
204 fList[0]->onDrawDRRect(outer, inner, this->overdrawPaint(paint));
208 fList[0]->onDrawRRect(rect, this->overdrawPaint(paint));
213 fList[0]->onDrawPoints(mode, count, points, this->overdrawPaint(paint));
218 fList[
[all...]
H A DSkTLList.h51 Node* node = iter.init(fList, Iter::kHead_IterStart);
71 fList.addToHead(node);
80 fList.addToTail(node);
90 fList.addBefore(node, location.getNode());
100 fList.addAfter(node, location.getNode());
116 Node* node = fList.head();
125 Node* node = fList.head();
191 INHERITED::init(list.fList, start);
195 return this->nodeToObj(INHERITED::init(list.fList, start));
265 fList
344 NodeList fList; member in class:SkTLList
[all...]
H A DSkTInternalLList.h34 SkDEBUGCODE(SkPtrWrapper<SkTInternalLList<ClassName> > fList;) \
70 entry->fList = NULL;
76 SkASSERT(NULL == entry->fList);
89 entry->fList = this;
95 SkASSERT(NULL == entry->fList);
108 entry->fList = this;
137 newEntry->fList = this;
166 newEntry->fList = this;
250 return entry->fList == this;
H A DSkEdgeBuilder.cpp126 if (vertical_line(edge) && fList.count()) {
127 Combine combine = CombineVertical(edge, (SkAnalyticEdge*)*(fList.end() - 1));
130 fList.pop();
135 fList.push(edge);
144 if (vertical_line(edge) && fList.count()) {
145 Combine combine = CombineVertical(edge, (SkEdge*)*(fList.end() - 1));
148 fList.pop();
153 fList.push(edge);
166 fList.push(edge);
173 fList
[all...]
H A DSkEdgeBuilder.h46 SkTDArray<void*> fList; member in class:SkEdgeBuilder
49 * If we're in general mode, we allcoate the pointers in fList, and this
50 * will point at fList.begin(). If we're in polygon mode, fList will be
/external/skia/src/utils/
H A DSkCanvasStack.cpp33 for (int i = fList.count() - 1; i > 0; --i) {
38 fList[i-1]->clipRegion(fCanvasData[i-1].requiredClip);
41 SkASSERT(fList.count() == fCanvasData.count());
55 SkASSERT(fList.count() == fCanvasData.count());
56 for (int i = 0; i < fList.count(); ++i) {
57 fList[i]->clipRegion(fCanvasData[i].requiredClip);
69 SkASSERT(fList.count() == fCanvasData.count());
70 for (int i = 0; i < fList.count(); ++i) {
75 fList[i]->setMatrix(tempMatrix);
96 SkASSERT(fList
[all...]
H A DSkNWayCanvas.cpp17 *fList.append() = canvas;
22 int index = fList.find(canvas);
24 fList.removeShuffle(index);
29 fList.reset();
37 Iter(const SkTDArray<SkCanvas*>& list) : fList(list) {
41 if (fIndex < fList.count()) {
42 fCanvas = fList[fIndex++];
50 const SkTDArray<SkCanvas*>& fList; member in class:SkNWayCanvas::Iter
56 Iter iter(fList);
65 Iter iter(fList);
[all...]
/external/skia/src/lazy/
H A DSkDiscardableMemoryPool.cpp59 SkTInternalLList<PoolDiscardableMemory> fList; member in class:__anon17107::DiscardableMemoryPool
146 SkASSERT(fList.isEmpty());
158 PoolDiscardableMemory* cur = iter.init(fList, Iter::kTail_IterStart);
170 fList.remove(dm);
184 fList.addToHead(dm);
198 fList.remove(dm);
200 SkASSERT(!fList.isInList(dm));
215 fList.remove(dm);
216 fList.addToHead(dm);
/external/ltp/testcases/network/nfsv4/acl/
H A Drandom_gen.py26 fList=[] variable in class:RandomGen
27 fListSize = len(fList)
41 self.fList.append(fName)
94 self.fList.append(tmp[i])
211 file = self.fList[random.randint(0,len(self.fList)-1)]
246 file2 = self.fList[random.randint(0,len(self.fList)-1)]
H A Dtest_acl.py55 for test_file in test.fList:
116 print test.fList
/external/skia/include/utils/
H A DSkNWayCanvas.h32 SkTDArray<SkCanvas*> fList; member in class:SkNWayCanvas
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit3.8.2/ junit/awtui/ junit/extensions/ junit/framework/ ...
/external/guice/lib/build/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...
/external/jsr330/lib/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...
/external/slf4j/integration/lib/
H A Djunit-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Djunit-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...

Completed in 343 milliseconds

12