Searched refs:RunType (Results 1 - 6 of 6) sorted by relevance

/external/clang/test/Parser/
H A DDelayedTemplateParsing.cpp69 template <typename RunType>
79 typedef void RunType(); typedef in class:PR11931::Callback
81 template <typename RunType>
82 Callback(BindState<RunType> bind_state) {
83 BindState<RunType>::Run();
/external/skia/src/core/
H A DSkRegionPriv.h32 RunHead* head = (RunHead*)sk_malloc_throw(sizeof(RunHead) + count * sizeof(RunType));
43 SkRegion::RunType* writable_runs()
47 return (SkRegion::RunType*)(this + 1);
49 const SkRegion::RunType* readonly_runs() const
52 return (const SkRegion::RunType*)(this + 1);
67 fRunCount * sizeof(RunType));
H A DSkRegion_rects.cpp19 SkRegion::RunType fX;
20 SkRegion::RunType fTop;
21 SkRegion::RunType fBottom;
61 Accumulator(SkRegion::RunType top, int numRects);
64 SkRegion::RunType append(SkRegion::RunType top, const VEdge* edge);
67 void copyTo(SkRegion::RunType dst[]);
71 SkRegion::RunType* fPtr;
72 SkRegion::RunType fBottom;
77 SkRegion::RunType fTo
[all...]
H A DSkRegion.cpp20 static SkRegion::RunType* skip_scanline(const SkRegion::RunType runs[])
27 return (SkRegion::RunType*)(runs + 1); // return past the X-sentinel
31 bool SkRegion::ComputeRunBounds(const SkRegion::RunType runs[], int count, SkIRect* bounds)
216 const RunType* runs = fRunHead->readonly_runs() + 1;
220 const RunType* next = skip_scanline(runs + 1);
233 bool SkRegion::setRuns(RunType runs[], int count)
249 RunType* stop = runs + count;
293 const RunType* r = runs;
315 memcpy(fRunHead->writable_runs(), runs, count * sizeof(RunType));
[all...]
H A DSkRegion_path.cpp25 fCurrScanline->fXCount = (SkRegion::RunType)((int)(fCurrXPtr - fCurrScanline->firstX()));
34 void copyToRgn(SkRegion::RunType runs[]) const;
55 SkRegion::RunType fLastY;
56 SkRegion::RunType fXCount;
58 SkRegion::RunType* firstX() const { return (SkRegion::RunType*)(this + 1); }
60 return (Scanline*)((SkRegion::RunType*)(this + 1) + fXCount);
63 SkRegion::RunType* fStorage;
67 SkRegion::RunType* fCurrXPtr;
68 SkRegion::RunType fTo
[all...]
/external/skia/include/core/
H A DSkRegion.h32 typedef int32_t RunType; typedef in class:SkRegion
312 const RunType* fRuns;
345 const SkRegion::RunType* fRuns;
373 SkDEBUGCODE(bool debugSetRuns(const RunType runs[], int count);)
393 const RunType* getRuns(RunType tmpStorage[], int* count) const;
394 bool setRuns(RunType runs[], int count);
399 RunType runs[kRectRegionRuns]);
401 static bool ComputeRunBounds(const RunType runs[], int count,

Completed in 167 milliseconds