Home
last modified time | relevance | path

Searched refs:newdata (Results 1 – 2 of 2) sorted by relevance

/AOO42X/main/vigra/
H A Dvigra1.6.0.patch326 value_type * newdata = 0;
334 - newdata = allocator_.allocate(typename Alloc::size_type(width*height));
335 - std::uninitialized_fill_n(newdata, width*height, d);
336 - newlines = initLineStartArray(newdata, width, height);
337 + newdata = allocator_.allocate(typename Alloc::size_type(w*h));
338 + std::uninitialized_fill_n(newdata, w*h, d);
339 + newlines = initLineStartArray(newdata, w, h);
344 newdata = data_;
345 - std::fill_n(newdata, width*height, d);
346 - newlines = initLineStartArray(newdata, width, height);
[all …]
/AOO42X/main/qadevOOo/tests/java/ifc/chart/
H A D_XChartDocument.java153 XChartData newdata = oObj.getData(); in _attachData() local
155 tRes.tested("attachData()", !(newdata.equals(ChartData))); in _attachData()