Home
last modified time | relevance | path

Searched refs:new_x (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/core/fxcrt/
Dfx_coordinates.h18 CFX_PTemplate(BaseType new_x, BaseType new_y) : x(new_x), y(new_y) {} in CFX_PTemplate() argument
156 CFX_VTemplate(BaseType new_x, BaseType new_y) in CFX_VTemplate() argument
157 : CFX_PTemplate<BaseType>(new_x, new_y) {} in CFX_VTemplate()
/external/python/cpython2/Lib/idlelib/
DAutoCompleteWindow.py229 new_x = text.winfo_rootx() + min(x, max(0, text_width - acw_width))
238 acw.wm_geometry("+%d+%d" % (new_x, new_y))
/external/libvncserver/webclients/novnc/include/
Ddisplay.js333 copyImage: function (old_x, old_y, new_x, new_y, w, h) { argument
336 var x2 = new_x - this._viewportLoc.x;
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_tex_sample.c903 int new_x, new_y, max_x; in get_texel_cube_seamless() local
908 new_x = x; in get_texel_cube_seamless()
926 new_x = get_next_xcoord(face, 0, max_x -1, x, y); in get_texel_cube_seamless()
933 new_x = get_next_xcoord(face, 1, max_x -1, x, y); in get_texel_cube_seamless()
937 new_x = get_next_xcoord(face, 2, max_x -1, x, y); in get_texel_cube_seamless()
941 new_x = get_next_xcoord(face, 3, max_x -1, x, y); in get_texel_cube_seamless()
946 return get_texel_3d_no_border(sp_sview, addr, new_x, new_y, layer + face); in get_texel_cube_seamless()
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h374 void set_x(float new_x) { x_ = new_x; } in set_x() argument
/external/python/cpython2/Doc/library/
Dcurses.rst1004 .. method:: window.move(new_y, new_x)
1006 Move cursor to ``(new_y, new_x)``.
1016 .. method:: window.mvwin(new_y, new_x)
1018 Move the window so its upper-left corner is at ``(new_y, new_x)``.