/external/dng_sdk/source/ |
D | dng_opcode_list.cpp | 31 : fList () in dng_opcode_list() 53 for (size_t index = 0; index < fList.size (); index++) in Clear() 56 if (fList [index]) in Clear() 59 delete fList [index]; in Clear() 61 fList [index] = NULL; in Clear() 67 fList.clear (); in Clear() 78 fList.swap (otherList.fList); in Swap() 93 for (size_t index = 0; index < fList.size (); index++) in MinVersion() 96 if (includeOptional || !fList [index]->Optional ()) in MinVersion() 99 result = Max_uint32 (result, fList [index]->MinVersion ()); in MinVersion() [all …]
|
D | dng_string_list.cpp | 29 , fList (NULL) in dng_string_list() 67 DoCopyBytes (fList, list, fCount * (uint32) sizeof (dng_string *)); in Allocate() 71 if (fList) in Allocate() 74 free (fList); in Allocate() 78 fList = list; in Allocate() 108 fList [j] = fList [j - 1]; in Insert() 112 fList [index] = ss; in Insert() 142 if (fList) in Clear() 148 delete fList [index]; in Clear() 152 free (fList); in Clear() [all …]
|
D | dng_opcode_list.h | 41 dng_std_vector<dng_opcode *> fList; 59 return fList.size () == 0; in IsEmpty() 88 return (uint32) fList.size (); in Count() 96 return *fList [index]; in Entry() 104 return *fList [index]; in Entry()
|
D | dng_bad_pixels.cpp | 579 , fList () in dng_opcode_FixBadPixelsList() 585 fList.Reset (list.Release ()); in dng_opcode_FixBadPixelsList() 587 fList->Sort (); in dng_opcode_FixBadPixelsList() 599 , fList () in dng_opcode_FixBadPixelsList() 618 fList.Reset (new dng_bad_pixel_list); in dng_opcode_FixBadPixelsList() 630 fList->AddPoint (pt); in dng_opcode_FixBadPixelsList() 644 fList->AddRect (r); in dng_opcode_FixBadPixelsList() 648 fList->Sort (); in dng_opcode_FixBadPixelsList() 663 (int) fList->Point (index).v, in dng_opcode_FixBadPixelsList() 664 (int) fList->Point (index).h); in dng_opcode_FixBadPixelsList() [all …]
|
D | dng_string_list.h | 35 dng_string **fList; variable 50 return *(fList [index]); 55 return *(fList [index]);
|
/external/skqp/src/utils/ |
D | SkNWayCanvas.cpp | 17 *fList.append() = canvas; in addCanvas() 22 int index = fList.find(canvas); in removeCanvas() 24 fList.removeShuffle(index); in removeCanvas() 29 fList.reset(); in removeAll() 37 Iter(const SkTDArray<SkCanvas*>& list) : fList(list) { in Iter() 41 if (fIndex < fList.count()) { in next() 42 fCanvas = fList[fIndex++]; in next() 50 const SkTDArray<SkCanvas*>& fList; member in SkNWayCanvas::Iter 56 Iter iter(fList); in willSave() 65 Iter iter(fList); in getSaveLayerStrategy() [all …]
|
D | SkCanvasStack.cpp | 33 for (int i = fList.count() - 1; i > 0; --i) { in pushCanvas() 38 fList[i-1]->clipRegion(fCanvasData[i-1].requiredClip); in pushCanvas() 41 SkASSERT(fList.count() == fCanvasData.count()); in pushCanvas() 55 SkASSERT(fList.count() == fCanvasData.count()); in clipToZOrderedBounds() 56 for (int i = 0; i < fList.count(); ++i) { in clipToZOrderedBounds() 57 fList[i]->clipRegion(fCanvasData[i].requiredClip); in clipToZOrderedBounds() 69 SkASSERT(fList.count() == fCanvasData.count()); in didSetMatrix() 70 for (int i = 0; i < fList.count(); ++i) { in didSetMatrix() 75 fList[i]->setMatrix(tempMatrix); in didSetMatrix() 96 SkASSERT(fList.count() == fCanvasData.count()); in onClipRegion() [all …]
|
/external/skia/src/utils/ |
D | SkNWayCanvas.cpp | 17 *fList.append() = canvas; in addCanvas() 22 int index = fList.find(canvas); in removeCanvas() 24 fList.removeShuffle(index); in removeCanvas() 29 fList.reset(); in removeAll() 37 Iter(const SkTDArray<SkCanvas*>& list) : fList(list) { in Iter() 41 if (fIndex < fList.count()) { in next() 42 fCanvas = fList[fIndex++]; in next() 50 const SkTDArray<SkCanvas*>& fList; member in SkNWayCanvas::Iter 56 Iter iter(fList); in willSave() 65 Iter iter(fList); in getSaveLayerStrategy() [all …]
|
D | SkCanvasStack.cpp | 33 for (int i = fList.count() - 1; i > 0; --i) { in pushCanvas() 38 fList[i-1]->clipRegion(fCanvasData[i-1].requiredClip); in pushCanvas() 41 SkASSERT(fList.count() == fCanvasData.count()); in pushCanvas() 55 SkASSERT(fList.count() == fCanvasData.count()); in clipToZOrderedBounds() 56 for (int i = 0; i < fList.count(); ++i) { in clipToZOrderedBounds() 57 fList[i]->clipRegion(fCanvasData[i].requiredClip); in clipToZOrderedBounds() 69 SkASSERT(fList.count() == fCanvasData.count()); in didSetMatrix() 70 for (int i = 0; i < fList.count(); ++i) { in didSetMatrix() 75 fList[i]->setMatrix(tempMatrix); in didSetMatrix() 96 SkASSERT(fList.count() == fCanvasData.count()); in onClipRegion() [all …]
|
/external/skqp/src/core/ |
D | SkPtrRecorder.cpp | 11 Pair* p = fList.begin(); in reset() 12 Pair* stop = fList.end(); in reset() 17 fList.reset(); in reset() 29 int count = fList.count(); in find() 33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); in find() 37 return fList[index].fIndex; in find() 45 int count = fList.count(); in add() 49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); in add() 54 *fList.insert(index) = pair; in add() 57 return fList[index].fIndex; in add() [all …]
|
D | SkOverdrawCanvas.cpp | 174 fList[0]->onDrawPatch(cubics, colors, texCoords, blendMode, fPaint); in onDrawPatch() 181 fList[0]->onDrawPaint(this->overdrawPaint(paint)); in onDrawPaint() 186 fList[0]->onDrawRect(rect, this->overdrawPaint(paint)); in onDrawRect() 190 fList[0]->onDrawRegion(region, this->overdrawPaint(paint)); in onDrawRegion() 194 fList[0]->onDrawOval(oval, this->overdrawPaint(paint)); in onDrawOval() 199 fList[0]->onDrawArc(arc, startAngle, sweepAngle, useCenter, this->overdrawPaint(paint)); in onDrawArc() 204 fList[0]->onDrawDRRect(outer, inner, this->overdrawPaint(paint)); in onDrawDRRect() 208 fList[0]->onDrawRRect(rect, this->overdrawPaint(paint)); in onDrawRRect() 213 fList[0]->onDrawPoints(mode, count, points, this->overdrawPaint(paint)); in onDrawPoints() 218 fList[0]->onDrawVerticesObject(vertices, blendMode, this->overdrawPaint(paint)); in onDrawVerticesObject() [all …]
|
D | SkTLList.h | 51 Node* node = iter.init(fList, Iter::kHead_IterStart); in ~SkTLList() 71 fList.addToHead(node); in addToHead() 80 fList.addToTail(node); in addToTail() 90 fList.addBefore(node, location.getNode()); in addBefore() 100 fList.addAfter(node, location.getNode()); in addAfter() 116 Node* node = fList.head(); in popHead() 125 Node* node = fList.head(); in popTail() 191 INHERITED::init(list.fList, start); 195 return this->nodeToObj(INHERITED::init(list.fList, start)); 265 fList.remove(node); in removeNode() [all …]
|
D | SkTMultiMap.h | 120 , fList(nullptr) { in ConstIter() 122 fList = &(*fIter); in ConstIter() 131 SkASSERT(fList); 132 return fList->fValue; 136 if (fList) { 137 fList = fList->fNext; 139 if (!fList) { 142 fList = &(*fIter); 149 const ValueList* fList; variable
|
D | SkEdgeBuilder.cpp | 126 fList.push(line); in addLine() 131 if (vertical_line(edge) && fList.count()) { in addLine() 132 Combine combine = CombineVertical(edge, (SkAnalyticEdge*)*(fList.end() - 1)); in addLine() 135 fList.pop(); in addLine() 140 fList.push(edge); in addLine() 149 if (vertical_line(edge) && fList.count()) { in addLine() 150 Combine combine = CombineVertical(edge, (SkEdge*)*(fList.end() - 1)); in addLine() 153 fList.pop(); in addLine() 158 fList.push(edge); in addLine() 171 fList.push(quad); in addQuad() [all …]
|
D | SkTInternalLList.h | 34 SkDEBUGCODE(SkPtrWrapper<SkTInternalLList<ClassName> > fList;) \ 75 entry->fList = nullptr; in remove() 81 SkASSERT(nullptr == entry->fList); in addToHead() 94 entry->fList = this; in addToHead() 100 SkASSERT(nullptr == entry->fList); in addToTail() 113 entry->fList = this; in addToTail() 142 newEntry->fList = this; in addBefore() 171 newEntry->fList = this; in addAfter() 192 SkASSERT(node->fList == &list); in concat() 193 node->fList = this; in concat() [all …]
|
D | SkPtrRecorder.h | 43 int count() const { return fList.count(); } in count() 73 return fIndex < fSet.fList.count() ? fSet.fList[fIndex++].fPtr : nullptr; in next() 95 SkTDArray<Pair> fList; variable
|
/external/skia/src/core/ |
D | SkPtrRecorder.cpp | 11 Pair* p = fList.begin(); in reset() 12 Pair* stop = fList.end(); in reset() 17 fList.reset(); in reset() 29 int count = fList.count(); in find() 33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); in find() 37 return fList[index].fIndex; in find() 45 int count = fList.count(); in add() 49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); in add() 54 *fList.insert(index) = pair; in add() 57 return fList[index].fIndex; in add() [all …]
|
D | SkOverdrawCanvas.cpp | 174 fList[0]->onDrawPatch(cubics, colors, texCoords, blendMode, fPaint); in onDrawPatch() 181 fList[0]->onDrawPaint(this->overdrawPaint(paint)); in onDrawPaint() 186 fList[0]->onDrawRect(rect, this->overdrawPaint(paint)); in onDrawRect() 190 fList[0]->onDrawRegion(region, this->overdrawPaint(paint)); in onDrawRegion() 194 fList[0]->onDrawOval(oval, this->overdrawPaint(paint)); in onDrawOval() 199 fList[0]->onDrawArc(arc, startAngle, sweepAngle, useCenter, this->overdrawPaint(paint)); in onDrawArc() 204 fList[0]->onDrawDRRect(outer, inner, this->overdrawPaint(paint)); in onDrawDRRect() 208 fList[0]->onDrawRRect(rect, this->overdrawPaint(paint)); in onDrawRRect() 213 fList[0]->onDrawPoints(mode, count, points, this->overdrawPaint(paint)); in onDrawPoints() 218 fList[0]->onDrawVerticesObject(vertices, blendMode, this->overdrawPaint(paint)); in onDrawVerticesObject() [all …]
|
D | SkTLList.h | 51 Node* node = iter.init(fList, Iter::kHead_IterStart); in ~SkTLList() 71 fList.addToHead(node); in addToHead() 80 fList.addToTail(node); in addToTail() 90 fList.addBefore(node, location.getNode()); in addBefore() 100 fList.addAfter(node, location.getNode()); in addAfter() 116 Node* node = fList.head(); in popHead() 125 Node* node = fList.head(); in popTail() 191 INHERITED::init(list.fList, start); 195 return this->nodeToObj(INHERITED::init(list.fList, start)); 265 fList.remove(node); in removeNode() [all …]
|
D | SkTMultiMap.h | 120 , fList(nullptr) { in ConstIter() 122 fList = &(*fIter); in ConstIter() 131 SkASSERT(fList); 132 return fList->fValue; 136 if (fList) { 137 fList = fList->fNext; 139 if (!fList) { 142 fList = &(*fIter); 149 const ValueList* fList; variable
|
D | SkEdgeBuilder.cpp | 126 fList.push(line); in addLine() 131 if (vertical_line(edge) && fList.count()) { in addLine() 132 Combine combine = CombineVertical(edge, (SkAnalyticEdge*)*(fList.end() - 1)); in addLine() 135 fList.pop(); in addLine() 140 fList.push(edge); in addLine() 149 if (vertical_line(edge) && fList.count()) { in addLine() 150 Combine combine = CombineVertical(edge, (SkEdge*)*(fList.end() - 1)); in addLine() 153 fList.pop(); in addLine() 158 fList.push(edge); in addLine() 171 fList.push(quad); in addQuad() [all …]
|
D | SkTInternalLList.h | 34 SkDEBUGCODE(SkPtrWrapper<SkTInternalLList<ClassName> > fList;) \ 75 entry->fList = nullptr; in remove() 81 SkASSERT(nullptr == entry->fList); in addToHead() 94 entry->fList = this; in addToHead() 100 SkASSERT(nullptr == entry->fList); in addToTail() 113 entry->fList = this; in addToTail() 142 newEntry->fList = this; in addBefore() 171 newEntry->fList = this; in addAfter() 192 SkASSERT(node->fList == &list); in concat() 193 node->fList = this; in concat() [all …]
|
D | SkPtrRecorder.h | 43 int count() const { return fList.count(); } in count() 73 return fIndex < fSet.fList.count() ? fSet.fList[fIndex++].fPtr : nullptr; in next() 95 SkTDArray<Pair> fList; variable
|
/external/skia/src/lazy/ |
D | SkDiscardableMemoryPool.cpp | 59 SkTInternalLList<PoolDiscardableMemory> fList; member in __anon686a27bb0111::DiscardableMemoryPool 138 SkASSERT(fList.isEmpty()); in ~DiscardableMemoryPool() 148 PoolDiscardableMemory* cur = iter.init(fList, Iter::kTail_IterStart); in dumpDownTo() 159 fList.remove(dm); in dumpDownTo() 173 fList.addToHead(dm.get()); in make() 185 fList.remove(dm); in removeFromPool() 187 SkASSERT(!fList.isInList(dm)); in removeFromPool() 202 fList.remove(dm); in lock() 203 fList.addToHead(dm); in lock()
|
/external/skqp/src/lazy/ |
D | SkDiscardableMemoryPool.cpp | 59 SkTInternalLList<PoolDiscardableMemory> fList; member in __anone7818b320111::DiscardableMemoryPool 138 SkASSERT(fList.isEmpty()); in ~DiscardableMemoryPool() 148 PoolDiscardableMemory* cur = iter.init(fList, Iter::kTail_IterStart); in dumpDownTo() 159 fList.remove(dm); in dumpDownTo() 173 fList.addToHead(dm.get()); in make() 185 fList.remove(dm); in removeFromPool() 187 SkASSERT(!fList.isInList(dm)); in removeFromPool() 202 fList.remove(dm); in lock() 203 fList.addToHead(dm); in lock()
|