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

  /external/chromium_org/third_party/skia/src/core/
SkRegionPriv.h 25 static int compute_intervalcount(const SkRegion::RunType runs[]) {
26 const SkRegion::RunType* curr = runs;
68 RunHead* head = (RunHead*)sk_malloc_throw(sizeof(RunHead) + count * sizeof(RunType));
87 SkRegion::RunType* writable_runs() {
89 return (SkRegion::RunType*)(this + 1);
92 const SkRegion::RunType* readonly_runs() const {
93 return (const SkRegion::RunType*)(this + 1);
104 fRunCount * sizeof(RunType));
120 static SkRegion::RunType* SkipEntireScanline(const SkRegion::RunType runs[])
    [all...]
SkRegion_path.cpp 35 fCurrScanline->fXCount = (SkRegion::RunType)((int)(fCurrXPtr - fCurrScanline->firstX()));
44 void copyToRgn(SkRegion::RunType runs[]) const;
77 SkRegion::RunType fLastY;
78 SkRegion::RunType fXCount;
80 SkRegion::RunType* firstX() const { return (SkRegion::RunType*)(this + 1); }
83 return (Scanline*)((SkRegion::RunType*)(this + 1) + fXCount + 1);
86 SkRegion::RunType* fStorage;
90 SkRegion::RunType* fCurrXPtr;
91 SkRegion::RunType fTop; // first Y valu
    [all...]
SkRegion.cpp 33 static SkRegion::RunType* skip_intervals(const SkRegion::RunType runs[]) {
45 return const_cast<SkRegion::RunType*>(runs);
48 bool SkRegion::RunsAreARect(const SkRegion::RunType runs[], int count,
232 bool SkRegion::setRuns(RunType runs[], int count) {
245 RunType* stop = runs + count;
292 memcpy(fRunHead->writable_runs(), runs, count * sizeof(RunType));
301 RunType runs[kRectRegionRuns]) {
322 const RunType* runs = fRunHead->findScanline(y);
345 static SkRegion::RunType scanline_bottom(const SkRegion::RunType runs[])
    [all...]
  /external/skia/src/core/
SkRegionPriv.h 25 static int compute_intervalcount(const SkRegion::RunType runs[]) {
26 const SkRegion::RunType* curr = runs;
68 RunHead* head = (RunHead*)sk_malloc_throw(sizeof(RunHead) + count * sizeof(RunType));
87 SkRegion::RunType* writable_runs() {
89 return (SkRegion::RunType*)(this + 1);
92 const SkRegion::RunType* readonly_runs() const {
93 return (const SkRegion::RunType*)(this + 1);
104 fRunCount * sizeof(RunType));
120 static SkRegion::RunType* SkipEntireScanline(const SkRegion::RunType runs[])
    [all...]
SkRegion_path.cpp 35 fCurrScanline->fXCount = (SkRegion::RunType)((int)(fCurrXPtr - fCurrScanline->firstX()));
44 void copyToRgn(SkRegion::RunType runs[]) const;
77 SkRegion::RunType fLastY;
78 SkRegion::RunType fXCount;
80 SkRegion::RunType* firstX() const { return (SkRegion::RunType*)(this + 1); }
83 return (Scanline*)((SkRegion::RunType*)(this + 1) + fXCount + 1);
86 SkRegion::RunType* fStorage;
90 SkRegion::RunType* fCurrXPtr;
91 SkRegion::RunType fTop; // first Y valu
    [all...]
SkRegion.cpp 33 static SkRegion::RunType* skip_intervals(const SkRegion::RunType runs[]) {
45 return const_cast<SkRegion::RunType*>(runs);
48 bool SkRegion::RunsAreARect(const SkRegion::RunType runs[], int count,
232 bool SkRegion::setRuns(RunType runs[], int count) {
245 RunType* stop = runs + count;
292 memcpy(fRunHead->writable_runs(), runs, count * sizeof(RunType));
301 RunType runs[kRectRegionRuns]) {
322 const RunType* runs = fRunHead->findScanline(y);
345 static SkRegion::RunType scanline_bottom(const SkRegion::RunType runs[])
    [all...]
  /external/chromium_org/base/
bind.h 60 typename internal::FunctorTraits<Functor>::RunType,
66 typedef typename internal::FunctorTraits<Functor>::RunType RunType;
68 typedef internal::BindState<RunnableType, RunType, void()> BindState;
79 typename internal::FunctorTraits<Functor>::RunType,
85 typedef typename internal::FunctorTraits<Functor>::RunType RunType;
87 // Use RunnableType::RunType instead of RunType above because our
90 typedef internal::FunctionTraits<typename RunnableType::RunType>
    [all...]
bind_internal.h 32 // and a RunType typedef that corresponds to the type of Run().
42 // RunType -- A function type (as opposed to function _pointer_ type) for
62 // FunctorTraits<> -- Type traits used determine the correct RunType and
94 // This class also exposes a RunType typedef that is the function type of the
108 typedef R (RunType)();
126 typedef R (RunType)(T*);
145 typedef R (RunType)(const T*);
164 typedef R (RunType)(A1);
182 typedef R (RunType)(T*, A1);
201 typedef R (RunType)(const T*, A1)
    [all...]
bind_internal_win.h 31 typedef R (RunType)();
49 typedef R (RunType)();
67 typedef R (RunType)(A1);
85 typedef R (RunType)(A1);
103 typedef R (RunType)(A1, A2);
122 typedef R (RunType)(A1, A2);
141 typedef R (RunType)(A1, A2, A3);
161 typedef R (RunType)(A1, A2, A3);
181 typedef R (RunType)(A1, A2, A3, A4);
202 typedef R (RunType)(A1, A2, A3, A4)
    [all...]
callback.h 366 template <typename Runnable, typename RunType, typename BoundArgsType>
373 typedef R(RunType)();
413 typedef R(RunType)(A1);
454 typedef R(RunType)(A1, A2);
498 typedef R(RunType)(A1, A2, A3);
545 typedef R(RunType)(A1, A2, A3, A4);
596 typedef R(RunType)(A1, A2, A3, A4, A5);
650 typedef R(RunType)(A1, A2, A3, A4, A5, A6);
707 typedef R(RunType)(A1, A2, A3, A4, A5, A6, A7);
callback_unittest.cc 18 typedef void(RunType)(internal::BindStateBase*);
26 template <typename Runnable, typename RunType, typename BoundArgsType>
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 70 template <typename RunType>
80 typedef void RunType();
82 template <typename RunType>
83 Callback(BindState<RunType> bind_state) {
84 BindState<RunType>::Run();
  /external/chromium_org/third_party/skia/include/core/
SkRegion.h 32 typedef int32_t RunType;
326 const RunType* fRuns;
359 const SkRegion::RunType* fRuns;
390 SkDEBUGCODE(bool debugSetRuns(const RunType runs[], int count);)
423 const RunType* getRuns(RunType tmpStorage[], int* intervals) const;
428 bool setRuns(RunType runs[], int count);
433 RunType runs[kRectRegionRuns]);
437 static bool RunsAreARect(const SkRegion::RunType runs[], int count,
  /external/skia/include/core/
SkRegion.h 32 typedef int32_t RunType;
326 const RunType* fRuns;
359 const SkRegion::RunType* fRuns;
390 SkDEBUGCODE(bool debugSetRuns(const RunType runs[], int count);)
423 const RunType* getRuns(RunType tmpStorage[], int* intervals) const;
428 bool setRuns(RunType runs[], int count);
433 RunType runs[kRectRegionRuns]);
437 static bool RunsAreARect(const SkRegion::RunType runs[], int count,
  /external/chromium_org/google_apis/drive/
task_util.h 111 &internal::ComposedCallback<typename CallbackType::RunType>::Run,
  /external/chromium_org/chrome/browser/local_discovery/
pwg_raster_converter.cc 255 base::CancelableCallback<ResultCallback::RunType> callback_;
  /external/chromium_org/ppapi/shared_impl/
proxy_lock.h 170 template <typename RunType>

Completed in 7992 milliseconds