/third_party/flutter/engine/flutter/testing/dart/ |
D | image_resize_test.dart | 67 final Image resized = await blackSquare.resize(); 68 expect(resized.height, blackSquare.height); 69 expect(resized.width, blackSquare.width); 74 final Image resized = await blackSquare.resize(targetHeight: 1); 75 expect(resized.height, 1); 76 expect(resized.width, 1); 81 final Image resized = await blackSquare.resize(targetWidth: 1); 82 expect(resized.height, 1); 83 expect(resized.width, 1); 88 final Image resized = await blackSquare.resize(targetWidth: 10); [all …]
|
/third_party/EGL/extensions/ANGLE/ |
D | EGL_ANGLE_window_fixed_size.txt | 67 "EGL_FIXED_SIZE_ANGLE specifies whether the surface must be resized by the 68 implementation when the native window is resized. The default value is 77 the window surface must be resized by the implementation subsequent to the 78 native window being resized, and prior to copying its contents to the 89 EGL_FIXED_SIZE_ANGLE boolean Surface will not be resized with a native 98 to which the surface was created. If the native window is resized and the 100 surface will eventually be resized by the implementation to match (as 102 yet resized the window surface, the size returned by eglQuerySurface will 108 resized to match a native window, and EGL_TRUE if the surface cannot be 109 resized." [all …]
|
/third_party/skia/third_party/externals/egl-registry/extensions/ANGLE/ |
D | EGL_ANGLE_window_fixed_size.txt | 67 "EGL_FIXED_SIZE_ANGLE specifies whether the surface must be resized by the 68 implementation when the native window is resized. The default value is 77 the window surface must be resized by the implementation subsequent to the 78 native window being resized, and prior to copying its contents to the 89 EGL_FIXED_SIZE_ANGLE boolean Surface will not be resized with a native 98 to which the surface was created. If the native window is resized and the 100 surface will eventually be resized by the implementation to match (as 102 yet resized the window surface, the size returned by eglQuerySurface will 108 resized to match a native window, and EGL_TRUE if the surface cannot be 109 resized." [all …]
|
/third_party/skia/third_party/externals/angle2/extensions/ |
D | EGL_ANGLE_window_fixed_size.txt | 69 "EGL_FIXED_SIZE_ANGLE specifies whether the surface must be resized by the 70 implementation when the native window is resized. The default value is 78 are ignored and the window surface must be resized by the implementation 79 subsequent to the native window being resized, and prior to copying its 90 EGL_FIXED_SIZE_ANGLE boolean Surface will not be resized with a native 99 to which the surface was created. If the native window is resized and the 101 surface will eventually be resized by the implementation to match (as 103 yet resized the window surface, the size returned by eglQuerySurface will 124 resized to match a native window, and EGL_TRUE if the surface cannot be 125 resized." [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/extensions/ |
D | EGL_ANGLE_window_fixed_size.txt | 69 "EGL_FIXED_SIZE_ANGLE specifies whether the surface must be resized by the 70 implementation when the native window is resized. The default value is 78 are ignored and the window surface must be resized by the implementation 79 subsequent to the native window being resized, and prior to copying its 90 EGL_FIXED_SIZE_ANGLE boolean Surface will not be resized with a native 99 to which the surface was created. If the native window is resized and the 101 surface will eventually be resized by the implementation to match (as 103 yet resized the window surface, the size returned by eglQuerySurface will 124 resized to match a native window, and EGL_TRUE if the surface cannot be 125 resized." [all …]
|
/third_party/boost/boost/numeric/odeint/stepper/ |
D | implicit_euler.hpp | 134 bool resized = false; in resize_impl() local 135 …resized |= adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 136 … resized |= adjust_size_by_resizeability( m_x , x , typename is_resizeable<state_type>::type() ); in resize_impl() 137 … resized |= adjust_size_by_resizeability( m_b , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 138 …resized |= adjust_size_by_resizeability( m_jacobi , x , typename is_resizeable<matrix_type>::type(… in resize_impl() 139 …resized |= adjust_size_by_resizeability( m_pm , x , typename is_resizeable<pmatrix_type>::type() ); in resize_impl() 140 return resized; in resize_impl()
|
D | dense_output_runge_kutta.hpp | 252 bool resized = false; in resize_impl() local 253 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 254 … resized |= adjust_size_by_resizeability( m_x2 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 255 return resized; in resize_impl() 369 bool resized = false; in resize() local 370 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize() 371 … resized |= adjust_size_by_resizeability( m_x2 , x , typename is_resizeable<state_type>::type() ); in resize() 372 …resized |= adjust_size_by_resizeability( m_dxdt1 , x , typename is_resizeable<deriv_type>::type() … in resize() 373 …resized |= adjust_size_by_resizeability( m_dxdt2 , x , typename is_resizeable<deriv_type>::type() … in resize() 374 return resized; in resize()
|
D | modified_midpoint.hpp | 140 bool resized( false ); in resize_impl() local 141 … resized |= adjust_size_by_resizeability( m_x0 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 142 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 143 …resized |= adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 144 return resized; in resize_impl() 262 bool resized( false ); in resize() local 263 … resized |= adjust_size_by_resizeability( m_x0 , x , typename is_resizeable<state_type>::type() ); in resize() 264 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize() 265 return resized; in resize()
|
D | rosenbrock4.hpp | 301 bool resized = false; in resize_impl() local 302 …resized |= adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 303 …resized |= adjust_size_by_resizeability( m_dfdt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 304 …resized |= adjust_size_by_resizeability( m_dxdtnew , x , typename is_resizeable<deriv_type>::type(… in resize_impl() 305 …resized |= adjust_size_by_resizeability( m_xtmp , x , typename is_resizeable<state_type>::type() ); in resize_impl() 306 … resized |= adjust_size_by_resizeability( m_g1 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 307 … resized |= adjust_size_by_resizeability( m_g2 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 308 … resized |= adjust_size_by_resizeability( m_g3 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 309 … resized |= adjust_size_by_resizeability( m_g4 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 310 … resized |= adjust_size_by_resizeability( m_g5 , x , typename is_resizeable<state_type>::type() ); in resize_impl() [all …]
|
D | runge_kutta4_classic.hpp | 152 bool resized = false; in resize_impl() local 153 …resized |= adjust_size_by_resizeability( m_x_tmp , x , typename is_resizeable<state_type>::type() … in resize_impl() 154 … resized |= adjust_size_by_resizeability( m_dxm , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 155 … resized |= adjust_size_by_resizeability( m_dxt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 156 … resized |= adjust_size_by_resizeability( m_dxh , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 157 return resized; in resize_impl()
|
D | runge_kutta_cash_karp54_classic.hpp | 194 bool resized = false; in resize_impl() local 195 …resized |= adjust_size_by_resizeability( m_x_tmp , x , typename is_resizeable<state_type>::type() … in resize_impl() 196 … resized |= adjust_size_by_resizeability( m_k2 , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 197 … resized |= adjust_size_by_resizeability( m_k3 , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 198 … resized |= adjust_size_by_resizeability( m_k4 , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 199 … resized |= adjust_size_by_resizeability( m_k5 , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 200 … resized |= adjust_size_by_resizeability( m_k6 , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 201 return resized; in resize_impl()
|
D | rosenbrock4_dense_output.hpp | 183 bool resized = false; in resize_impl() local 184 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 185 … resized |= adjust_size_by_resizeability( m_x2 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 186 return resized; in resize_impl()
|
D | explicit_generic_rk.hpp | 167 bool resized( false ); in resize_impl() local 168 …resized |= adjust_size_by_resizeability( m_x_tmp , x , typename is_resizeable<state_type>::type() … in resize_impl() 171 …resized |= adjust_size_by_resizeability( m_F[i] , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 173 return resized; in resize_impl()
|
D | explicit_error_generic_rk.hpp | 152 bool resized( false ); in resize_impl() local 153 …resized |= adjust_size_by_resizeability( m_x_tmp , x , typename is_resizeable<state_type>::type() … in resize_impl() 156 …resized |= adjust_size_by_resizeability( m_F[i] , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 158 return resized; in resize_impl()
|
D | runge_kutta_dopri5.hpp | 286 bool resized = false; in resize_k_x_tmp_impl() local 287 …resized |= adjust_size_by_resizeability( m_x_tmp , x , typename is_resizeable<state_type>::type() … in resize_k_x_tmp_impl() 288 … resized |= adjust_size_by_resizeability( m_k2 , x , typename is_resizeable<deriv_type>::type() ); in resize_k_x_tmp_impl() 289 … resized |= adjust_size_by_resizeability( m_k3 , x , typename is_resizeable<deriv_type>::type() ); in resize_k_x_tmp_impl() 290 … resized |= adjust_size_by_resizeability( m_k4 , x , typename is_resizeable<deriv_type>::type() ); in resize_k_x_tmp_impl() 291 … resized |= adjust_size_by_resizeability( m_k5 , x , typename is_resizeable<deriv_type>::type() ); in resize_k_x_tmp_impl() 292 … resized |= adjust_size_by_resizeability( m_k6 , x , typename is_resizeable<deriv_type>::type() ); in resize_k_x_tmp_impl() 293 return resized; in resize_k_x_tmp_impl()
|
D | bulirsch_stoer_dense_out.hpp | 601 bool resized( false ); in resize_impl() local 603 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 604 … resized |= adjust_size_by_resizeability( m_x2 , x , typename is_resizeable<state_type>::type() ); in resize_impl() 605 …resized |= adjust_size_by_resizeability( m_dxdt1 , x , typename is_resizeable<state_type>::type() … in resize_impl() 606 …resized |= adjust_size_by_resizeability( m_dxdt2 , x , typename is_resizeable<state_type>::type() … in resize_impl() 607 … resized |= adjust_size_by_resizeability( m_err , x , typename is_resizeable<state_type>::type() ); in resize_impl() 610 …resized |= adjust_size_by_resizeability( m_table[i] , x , typename is_resizeable<state_type>::type… in resize_impl() 612 …resized |= adjust_size_by_resizeability( m_mp_states[i] , x , typename is_resizeable<state_type>::… in resize_impl() 615 …resized |= adjust_size_by_resizeability( m_derivs[i][j] , x , typename is_resizeable<deriv_type>::… in resize_impl() 618 …resized |= adjust_size_by_resizeability( m_diffs[i][j] , x , typename is_resizeable<deriv_type>::t… in resize_impl() [all …]
|
D | velocity_verlet.hpp | 214 bool resized = false; in resize_impl() local 215 …resized |= adjust_size_by_resizeability( m_a1 , x , typename is_resizeable< acceleration_type >::t… in resize_impl() 216 …resized |= adjust_size_by_resizeability( m_a2 , x , typename is_resizeable< acceleration_type >::t… in resize_impl() 217 return resized; in resize_impl()
|
/third_party/boost/boost/numeric/odeint/external/mtl4/ |
D | implicit_euler_mtl4.hpp | 137 bool resized = false; in resize_impl() local 138 …resized |= adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl() 139 … resized |= adjust_size_by_resizeability( m_x , x , typename is_resizeable<state_type>::type() ); in resize_impl() 140 …resized |= adjust_size_by_resizeability( m_identity , x , typename is_resizeable<matrix_type>::typ… in resize_impl() 141 …resized |= adjust_size_by_resizeability( m_jacobi , x , typename is_resizeable<matrix_type>::type(… in resize_impl() 142 return resized; in resize_impl()
|
/third_party/boost/boost/numeric/odeint/stepper/detail/ |
D | adaptive_adams_coefficients.hpp | 180 bool resized( false ); in resize_phi_impl() local 184 …resized |= adjust_size_by_resizeability( phi[0][i], x, typename is_resizeable<deriv_type>::type() … in resize_phi_impl() 185 …resized |= adjust_size_by_resizeability( phi[1][i], x, typename is_resizeable<deriv_type>::type() … in resize_phi_impl() 186 …resized |= adjust_size_by_resizeability( phi[2][i], x, typename is_resizeable<deriv_type>::type() … in resize_phi_impl() 188 return resized; in resize_phi_impl()
|
/third_party/flutter/engine/flutter/fml/ |
D | message.cc | 76 void* resized = ::realloc(buffer_, size); in Resize() local 78 const bool success = resized != nullptr; in Resize() 82 buffer_ = static_cast<uint8_t*>(resized); in Resize()
|
/third_party/boost/libs/geometry/doc/reference/algorithms/ |
D | append.qbk | 32 In the last case, the interior rings are not resized automatically, 36 The multi-linestring is not resized automatically, so ensure 44 The multi-polygon is not resized automatically, so ensure 47 of the polygon: the interior rings are not resized
|
/third_party/node/deps/npm/node_modules/gauge/ |
D | render-template.js | 121 var resized = 0 135 } while (resizing && resized++ < output.length) 138 resized = 0 150 } while (resizing && resized++ < output.length)
|
/third_party/EGL/extensions/EXT/ |
D | EGL_EXT_swap_buffers_with_damage.txt | 108 resized prior to the swap, <surface> must be resized to match. 109 <surface> will normally be resized by the EGL implementation 110 at the time the native window is resized. If the 216 asynchronously resized then the window system may maintain the old 221 resized because the rectangles and buffer contents will be moved in 231 when presenting to a native window that has been resized? 244 buffers become undefined when a native window has been resized, 253 platforms where native windows can be resized asynchronously with 328 native window that has been resized. 331 window that has been resized.
|
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/ |
D | EGL_EXT_swap_buffers_with_damage.txt | 108 resized prior to the swap, <surface> must be resized to match. 109 <surface> will normally be resized by the EGL implementation 110 at the time the native window is resized. If the 216 asynchronously resized then the window system may maintain the old 221 resized because the rectangles and buffer contents will be moved in 231 when presenting to a native window that has been resized? 244 buffers become undefined when a native window has been resized, 253 platforms where native windows can be resized asynchronously with 328 native window that has been resized. 331 window that has been resized.
|
/third_party/mesa3d/src/gallium/frontends/glx/xlib/ |
D | xm_st.c | 211 bool resized; in xmesa_st_framebuffer_validate() local 228 resized = (xstfb->buffer->width != xstfb->texture_width || in xmesa_st_framebuffer_validate() 232 if (resized || new_mask) { in xmesa_st_framebuffer_validate() 238 if (!resized) { in xmesa_st_framebuffer_validate()
|