code
stringlengths
17
247k
docstring
stringlengths
30
30.3k
func_name
stringlengths
1
89
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
153
url
stringlengths
51
209
license
stringclasses
4 values
function ncurses_putp($text) {}
Apply padding information to the string and output it @link https://php.net/manual/en/function.ncurses-putp.php @param string $text <p> </p> @return int
ncurses_putp
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_scr_dump($filename) {}
Dump screen content to file @link https://php.net/manual/en/function.ncurses-scr-dump.php @param string $filename <p> </p> @return int
ncurses_scr_dump
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_scr_init($filename) {}
Initialize screen from file dump @link https://php.net/manual/en/function.ncurses-scr-init.php @param string $filename <p> </p> @return int
ncurses_scr_init
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_scr_restore($filename) {}
Restore screen from file dump @link https://php.net/manual/en/function.ncurses-scr-restore.php @param string $filename <p> </p> @return int
ncurses_scr_restore
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_scr_set($filename) {}
Inherit screen from file dump @link https://php.net/manual/en/function.ncurses-scr-set.php @param string $filename <p> </p> @return int
ncurses_scr_set
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvaddch($y, $x, $c) {}
Move current position and add character @link https://php.net/manual/en/function.ncurses-mvaddch.php @param int $y <p> </p> @param int $x <p> </p> @param int $c <p> </p> @return int
ncurses_mvaddch
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvaddchnstr($y, $x, $s, $n) {}
Move position and add attributed string with specified length @link https://php.net/manual/en/function.ncurses-mvaddchnstr.php @param int $y <p> </p> @param int $x <p> </p> @param string $s <p> </p> @param int $n <p> </p> @return int
ncurses_mvaddchnstr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_addchnstr($s, $n) {}
Add attributed string with specified length at current position @link https://php.net/manual/en/function.ncurses-addchnstr.php @param string $s <p> </p> @param int $n <p> </p> @return int
ncurses_addchnstr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvaddchstr($y, $x, $s) {}
Move position and add attributed string @link https://php.net/manual/en/function.ncurses-mvaddchstr.php @param int $y <p> </p> @param int $x <p> </p> @param string $s <p> </p> @return int
ncurses_mvaddchstr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_addchstr($s) {}
Add attributed string at current position @link https://php.net/manual/en/function.ncurses-addchstr.php @param string $s <p> </p> @return int
ncurses_addchstr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvaddnstr($y, $x, $s, $n) {}
Move position and add string with specified length @link https://php.net/manual/en/function.ncurses-mvaddnstr.php @param int $y <p> </p> @param int $x <p> </p> @param string $s <p> </p> @param int $n <p> </p> @return int
ncurses_mvaddnstr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_addnstr($s, $n) {}
Add string with specified length at current position @link https://php.net/manual/en/function.ncurses-addnstr.php @param string $s <p> </p> @param int $n <p> </p> @return int
ncurses_addnstr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvaddstr($y, $x, $s) {}
Move position and add string @link https://php.net/manual/en/function.ncurses-mvaddstr.php @param int $y <p> </p> @param int $x <p> </p> @param string $s <p> </p> @return int
ncurses_mvaddstr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvdelch($y, $x) {}
Move position and delete character, shift rest of line left @link https://php.net/manual/en/function.ncurses-mvdelch.php @param int $y <p> </p> @param int $x <p> </p> @return int
ncurses_mvdelch
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvgetch($y, $x) {}
Move position and get character at new position @link https://php.net/manual/en/function.ncurses-mvgetch.php @param int $y <p> </p> @param int $x <p> </p> @return int
ncurses_mvgetch
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvinch($y, $x) {}
Move position and get attributed character at new position @link https://php.net/manual/en/function.ncurses-mvinch.php @param int $y <p> </p> @param int $x <p> </p> @return int
ncurses_mvinch
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvwaddstr($window, $y, $x, $text) {}
Add string at new position in window @link https://php.net/manual/en/function.ncurses-mvwaddstr.php @param resource $window <p> </p> @param int $y <p> </p> @param int $x <p> </p> @param string $text <p> </p> @return int
ncurses_mvwaddstr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_insstr($text) {}
Insert string at current position, moving rest of line right @link https://php.net/manual/en/function.ncurses-insstr.php @param string $text <p> </p> @return int
ncurses_insstr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_instr(&$buffer) {}
Reads string from terminal screen @link https://php.net/manual/en/function.ncurses-instr.php @param string &$buffer <p> The characters. Attributes will be stripped. </p> @return int the number of characters.
ncurses_instr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvhline($y, $x, $attrchar, $n) {}
Set new position and draw a horizontal line using an attributed character and max. n characters long @link https://php.net/manual/en/function.ncurses-mvhline.php @param int $y <p> </p> @param int $x <p> </p> @param int $attrchar <p> </p> @param int $n <p> </p> @return int
ncurses_mvhline
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mvcur($old_y, $old_x, $new_y, $new_x) {}
Move cursor immediately @link https://php.net/manual/en/function.ncurses-mvcur.php @param int $old_y <p> </p> @param int $old_x <p> </p> @param int $new_y <p> </p> @param int $new_x <p> </p> @return int
ncurses_mvcur
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_init_color($color, $r, $g, $b) {}
Set new RGB value for color @link https://php.net/manual/en/function.ncurses-init-color.php @param int $color <p> </p> @param int $r <p> </p> @param int $g <p> </p> @param int $b <p> </p> @return int
ncurses_init_color
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_border($left, $right, $top, $bottom, $tl_corner, $tr_corner, $bl_corner, $br_corner) {}
Draw a border around the screen using attributed characters @link https://php.net/manual/en/function.ncurses-border.php @param int $left <p> </p> @param int $right <p> </p> @param int $top <p> </p> @param int $bottom <p> </p> @param int $tl_corner <p> Top left corner </p> @param int $tr_corner <p> Top right corner </p> @param int $bl_corner <p> Bottom left corner </p> @param int $br_corner <p> Bottom right corner </p> @return int
ncurses_border
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_assume_default_colors($fg, $bg) {}
Define default colors for color 0 @link https://php.net/manual/en/function.ncurses-assume-default-colors.php @param int $fg <p> </p> @param int $bg <p> </p> @return int
ncurses_assume_default_colors
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_hline($charattr, $n) {}
Draw a horizontal line at current position using an attributed character and max. n characters long @link https://php.net/manual/en/function.ncurses-hline.php @param int $charattr <p> </p> @param int $n <p> </p> @return int
ncurses_hline
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_vline($charattr, $n) {}
Draw a vertical line at current position using an attributed character and max. n characters long @link https://php.net/manual/en/function.ncurses-vline.php @param int $charattr <p> </p> @param int $n <p> </p> @return int
ncurses_vline
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_keyok($keycode, $enable) {}
Enable or disable a keycode @link https://php.net/manual/en/function.ncurses-keyok.php @param int $keycode <p> </p> @param bool $enable <p> </p> @return int
ncurses_keyok
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_termname() {}
Returns terminals (short)-name @link https://php.net/manual/en/function.ncurses-termname.php @return string|null the shortname of the terminal, truncated to 14 characters. On errors, returns null.
ncurses_termname
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_longname() {}
Returns terminals description @link https://php.net/manual/en/function.ncurses-longname.php @return string|null the description, as a string truncated to 128 characters. On errors, returns null.
ncurses_longname
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mousemask($newmask, &$oldmask) {}
Sets mouse options @link https://php.net/manual/en/function.ncurses-mousemask.php @param int $newmask <p> Mouse mask options can be set with the following predefined constants: <p>NCURSES_BUTTON1_PRESSED</p> @param int &$oldmask <p> This will be set to the previous value of the mouse event mask. </p> @return int a mask to indicated which of the in parameter newmask specified mouse events can be reported. On complete failure, it returns 0. </p>
ncurses_mousemask
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_getmouse(array &$mevent) {}
Reads mouse event @link https://php.net/manual/en/function.ncurses-getmouse.php @param array &$mevent <p> Event options will be delivered in this parameter which has to be an array, passed by reference (see example below). </p> <p> On success an associative array with following keys will be delivered: <p> "id" : Id to distinguish multiple devices </p> @return bool false if a mouse event is actually visible in the given window, otherwise returns true. </p>
ncurses_getmouse
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_ungetmouse(array $mevent) {}
Pushes mouse event to queue @link https://php.net/manual/en/function.ncurses-ungetmouse.php @param array $mevent <p> An associative array specifying the event options: <b>"id"</b> : Id to distinguish multiple devices </p> @return bool false on success, true otherwise.
ncurses_ungetmouse
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_mouse_trafo(&$y, &$x, $toscreen) {}
Transforms coordinates @link https://php.net/manual/en/function.ncurses-mouse-trafo.php @param int &$y <p> </p> @param int &$x <p> </p> @param bool $toscreen <p> </p> @return bool
ncurses_mouse_trafo
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wmouse_trafo($window, &$y, &$x, $toscreen) {}
Transforms window/stdscr coordinates @link https://php.net/manual/en/function.ncurses-wmouse-trafo.php @param resource $window <p> </p> @param int &$y <p> </p> @param int &$x <p> </p> @param bool $toscreen <p> </p> @return bool
ncurses_wmouse_trafo
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_waddstr($window, $str, $n = null) {}
Outputs text at current position in window @link https://php.net/manual/en/function.ncurses-waddstr.php @param resource $window <p> </p> @param string $str <p> </p> @param int $n [optional] <p> </p> @return int
ncurses_waddstr
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wnoutrefresh($window) {}
Copies window to virtual screen @link https://php.net/manual/en/function.ncurses-wnoutrefresh.php @param resource $window <p> </p> @return int
ncurses_wnoutrefresh
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wcolor_set($window, $color_pair) {}
Sets windows color pairings @link https://php.net/manual/en/function.ncurses-wcolor-set.php @param resource $window <p> </p> @param int $color_pair <p> </p> @return int
ncurses_wcolor_set
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wgetch($window) {}
Reads a character from keyboard (window) @link https://php.net/manual/en/function.ncurses-wgetch.php @param resource $window <p> </p> @return int
ncurses_wgetch
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_keypad($window, $bf) {}
Turns keypad on or off @link https://php.net/manual/en/function.ncurses-keypad.php @param resource $window <p> </p> @param bool $bf <p> </p> @return int
ncurses_keypad
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wmove($window, $y, $x) {}
Moves windows output position @link https://php.net/manual/en/function.ncurses-wmove.php @param resource $window <p> </p> @param int $y <p> </p> @param int $x <p> </p> @return int
ncurses_wmove
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_newpad($rows, $cols) {}
Creates a new pad (window) @link https://php.net/manual/en/function.ncurses-newpad.php @param int $rows <p> </p> @param int $cols <p> </p> @return resource
ncurses_newpad
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_prefresh($pad, $pminrow, $pmincol, $sminrow, $smincol, $smaxrow, $smaxcol) {}
Copies a region from a pad into the virtual screen @link https://php.net/manual/en/function.ncurses-prefresh.php @param resource $pad <p> </p> @param int $pminrow <p> </p> @param int $pmincol <p> </p> @param int $sminrow <p> </p> @param int $smincol <p> </p> @param int $smaxrow <p> </p> @param int $smaxcol <p> </p> @return int
ncurses_prefresh
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_pnoutrefresh($pad, $pminrow, $pmincol, $sminrow, $smincol, $smaxrow, $smaxcol) {}
Copies a region from a pad into the virtual screen @link https://php.net/manual/en/function.ncurses-pnoutrefresh.php @param resource $pad <p> </p> @param int $pminrow <p> </p> @param int $pmincol <p> </p> @param int $sminrow <p> </p> @param int $smincol <p> </p> @param int $smaxrow <p> </p> @param int $smaxcol <p> </p> @return int
ncurses_pnoutrefresh
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wstandout($window) {}
Enter standout mode for a window @link https://php.net/manual/en/function.ncurses-wstandout.php @param resource $window <p> </p> @return int
ncurses_wstandout
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wstandend($window) {}
End standout mode for a window @link https://php.net/manual/en/function.ncurses-wstandend.php @param resource $window <p> </p> @return int
ncurses_wstandend
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wattrset($window, $attrs) {}
Set the attributes for a window @link https://php.net/manual/en/function.ncurses-wattrset.php @param resource $window <p> </p> @param int $attrs <p> </p> @return int
ncurses_wattrset
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wattron($window, $attrs) {}
Turns on attributes for a window @link https://php.net/manual/en/function.ncurses-wattron.php @param resource $window <p> </p> @param int $attrs <p> </p> @return int
ncurses_wattron
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wattroff($window, $attrs) {}
Turns off attributes for a window @link https://php.net/manual/en/function.ncurses-wattroff.php @param resource $window <p> </p> @param int $attrs <p> </p> @return int
ncurses_wattroff
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_waddch($window, $ch) {}
Adds character at current position in a window and advance cursor @link https://php.net/manual/en/function.ncurses-waddch.php @param resource $window <p> </p> @param int $ch <p> </p> @return int
ncurses_waddch
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wborder($window, $left, $right, $top, $bottom, $tl_corner, $tr_corner, $bl_corner, $br_corner) {}
Draws a border around the window using attributed characters @link https://php.net/manual/en/function.ncurses-wborder.php @param resource $window <p> The window on which we operate </p> @param int $left <p> </p> @param int $right <p> </p> @param int $top <p> </p> @param int $bottom <p> </p> @param int $tl_corner <p> Top left corner </p> @param int $tr_corner <p> Top right corner </p> @param int $bl_corner <p> Bottom left corner </p> @param int $br_corner <p> Bottom right corner </p> @return int
ncurses_wborder
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_whline($window, $charattr, $n) {}
Draws a horizontal line in a window at current position using an attributed character and max. n characters long @link https://php.net/manual/en/function.ncurses-whline.php @param resource $window <p> </p> @param int $charattr <p> </p> @param int $n <p> </p> @return int
ncurses_whline
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_wvline($window, $charattr, $n) {}
Draws a vertical line in a window at current position using an attributed character and max. n characters long @link https://php.net/manual/en/function.ncurses-wvline.php @param resource $window <p> </p> @param int $charattr <p> </p> @param int $n <p> </p> @return int
ncurses_wvline
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_getyx($window, &$y, &$x) {}
Returns the current cursor position for a window @link https://php.net/manual/en/function.ncurses-getyx.php @param resource $window <p> </p> @param int &$y <p> </p> @param int &$x <p> </p> @return void
ncurses_getyx
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_getmaxyx($window, &$y, &$x) {}
Returns the size of a window @link https://php.net/manual/en/function.ncurses-getmaxyx.php @param resource $window <p> The measured window </p> @param int &$y <p> This will be set to the window height </p> @param int &$x <p> This will be set to the window width </p> @return void
ncurses_getmaxyx
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_update_panels() {}
Refreshes the virtual screen to reflect the relations between panels in the stack @link https://php.net/manual/en/function.ncurses-update-panels.php @return void
ncurses_update_panels
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_panel_window($panel) {}
Returns the window associated with panel @link https://php.net/manual/en/function.ncurses-panel-window.php @param resource $panel <p> </p> @return resource
ncurses_panel_window
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_panel_below($panel) {}
Returns the panel below panel @link https://php.net/manual/en/function.ncurses-panel-below.php @param resource $panel <p> </p> @return resource
ncurses_panel_below
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_panel_above($panel) {}
Returns the panel above panel @link https://php.net/manual/en/function.ncurses-panel-above.php @param resource $panel <p> </p> @return resource If panel is null, returns the bottom panel in the stack.
ncurses_panel_above
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_replace_panel($panel, $window) {}
Replaces the window associated with panel @link https://php.net/manual/en/function.ncurses-replace-panel.php @param resource $panel <p> </p> @param resource $window <p> </p> @return int
ncurses_replace_panel
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_move_panel($panel, $startx, $starty) {}
Moves a panel so that its upper-left corner is at [startx, starty] @link https://php.net/manual/en/function.ncurses-move-panel.php @param resource $panel <p> </p> @param int $startx <p> </p> @param int $starty <p> </p> @return int
ncurses_move_panel
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_bottom_panel($panel) {}
Moves a visible panel to the bottom of the stack @link https://php.net/manual/en/function.ncurses-bottom-panel.php @param resource $panel <p> </p> @return int
ncurses_bottom_panel
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_top_panel($panel) {}
Moves a visible panel to the top of the stack @link https://php.net/manual/en/function.ncurses-top-panel.php @param resource $panel <p> </p> @return int
ncurses_top_panel
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_show_panel($panel) {}
Places an invisible panel on top of the stack, making it visible @link https://php.net/manual/en/function.ncurses-show-panel.php @param resource $panel <p> </p> @return int
ncurses_show_panel
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_hide_panel($panel) {}
Remove panel from the stack, making it invisible @link https://php.net/manual/en/function.ncurses-hide-panel.php @param resource $panel <p> </p> @return int
ncurses_hide_panel
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_del_panel($panel) {}
Remove panel from the stack and delete it (but not the associated window) @link https://php.net/manual/en/function.ncurses-del-panel.php @param resource $panel <p> </p> @return bool
ncurses_del_panel
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
function ncurses_new_panel($window) {}
Create a new panel and associate it with window @link https://php.net/manual/en/function.ncurses-new-panel.php @param resource $window <p> </p> @return resource
ncurses_new_panel
php
JetBrains/phpstorm-stubs
ncurses/ncurses.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/ncurses/ncurses.php
Apache-2.0
public static function open($filename, $password = null, ?callable $volume_callback = null) {}
Open RAR archive @param string $filename Path to the Rar archive @param null|string $password A plain password, if needed to decrypt the headers. It will also be used by default if encrypted files are found. Note that the files may have different passwords in respect to the headers and among them @param null|callable $volume_callback A function that receives one parameter – the path of the volume that was not found – and returns a string with the correct path for such volume or NULL if such volume does not exist or is not known. The programmer should ensure the passed function doesn't cause loops as this function is called repeatedly if the path returned in a previous call did not correspond to the needed volume. Specifying this parameter omits the notice that would otherwise be emitted whenever a volume is not found; an implementation that only returns NULL can therefore be used to merely omit such notices @link https://php.net/manual/en/rararchive.open.php @return RarArchive|false the requested RarArchive instance or FALSE on failure.
open
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function close() {}
Close RAR archive and free all resources @link https://php.net/manual/en/rararchive.close.php @return bool TRUE on success or FALSE on failure
close
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getComment() {}
Get comment text from the RAR archive @link https://php.net/manual/en/rararchive.getcomment.php @return string|null the comment or NULL if there is none
getComment
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getEntries() {}
Get full list of entries from the RAR archive @return RarEntry[]|false array of {@see RarEntry} objects or FALSE on failure
getEntries
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getEntry($entryname) {}
Get entry object from the RAR archive Get entry object (file or directory) from the RAR archive @link https://php.net/manual/en/rararchive.getentry.php @param string $entryname Path to the entry within the RAR archive @return RarEntry|false the matching RarEntry object or FALSE on failure
getEntry
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function isBroken() {}
Test whether an archive is broken (incomplete) This function determines whether an archive is incomplete, i.e., if a volume is missing or a volume is truncated. @link https://php.net/manual/en/rararchive.isbroken.php @return bool Returns TRUE if the archive is broken, FALSE otherwise. This function may also return FALSE if the passed file has already been closed. The only way to tell the two cases apart is to enable exceptions with {@see RarException::setUsingExceptions()}; however, this should be unnecessary as a program should not operate on closed files.
isBroken
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function isSolid() {}
Check whether the RAR archive is solid Check whether the RAR archive is solid. Individual file extraction is slower on solid archives @link https://php.net/manual/enrararchive.issolid.php @return bool TRUE if the archive is solid, FALSE otherwise
isSolid
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function setAllowBroken($allow_broken) {}
Whether opening broken archives is allowed This method defines whether broken archives can be read or all the operations that attempt to extract the archive entries will fail. Broken archives are archives for which no error is detected when the file is opened but an error occurs when reading the entries. @link https://php.net/manual/en/rararchive.setallowbroken.php @param bool $allow_broken Whether to allow reading broken files (TRUE) or not (FALSE) @return bool TRUE или FALSE в случае возникновения ошибки. It will only fail if the file has already been closed
setAllowBroken
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function __toString() {}
Get text representation Provides a string representation for this RarArchive object. It currently shows the full path name of the archive volume that was opened and whether the resource is valid or was already closed through a call to {@see RarArchive::close()}. This method may be used only for debugging purposes, as there are no guarantees as to which information the result contains or how it is formatted. @return string A textual representation of this RarArchive object. The content of this representation is unspecified.
__toString
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function extract($dir, $filepath = "", $password = null, $extended_data = false) {}
Extract entry from the archive extracts the entry's data. It will create new file in the specified dir with the name identical to the entry's name, unless the second argument is specified. @link https://php.net/manual/en/rarentry.extract.php @param string $dir Path to the directory where files should be extracted. This parameter is considered if and only if filepath is not. If both parameters are empty an extraction to the current directory will be attempted. @param string $filepath Path (relative or absolute) containing the directory and filename of the extracted file. This parameter overrides both the parameter dir and the original file name. @param string $password The password used to encrypt this entry. If the entry is not encrypted, this value will not be used and can be omitted. If this parameter is omitted and the entry is encrypted, the password given to rar_open(), if any, will be used. If a wrong password is given, either explicitly or implicitly via rar_open(), CRC checking will fail and this method will fail and return FALSE. If no password is given and one is required, this method will fail and return FALSE. You can check whether an entry is encrypted with {@see RarEntry::isEncrypted()}. @param bool $extended_data If TRUE, extended information such as NTFS ACLs and Unix owner information will be set in the extract files, as long as it's present in the archive. @return bool TRUE on success or FALSE on failure
extract
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getAttr() {}
Get attributes of the entry Returns the OS-dependent attributes of the archive entry @link https://php.net/manual/en/rarentry.getattr.php @return int|false the attributes or FALSE on error
getAttr
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getCrc() {}
Get CRC of the entry Returns an hexadecimal string representation of the CRC of the archive entry. @link https://php.net/manual/en/rarentry.getcrc.php @return string|false the CRC of the archive entry or FALSE on error
getCrc
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getFileTime() {}
Get entry last modification time @link https://php.net/manual/en/rarentry.getfiletime.php @return string|false entry last modification time as string in format YYYY-MM-DD HH:II:SS, or FALSE on errors
getFileTime
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getHostOs() {}
Get entry host OS Returns the code of the host OS of the archive entry @link https://php.net/manual/en/rarentry.gethostos.php @return int|false the code of the host OS, or FALSE on error
getHostOs
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getMethod() {}
Get pack method of the entry returns number of the method used when adding current archive entry @link https://php.net/manual/en/rarentry.getmethod.php @return int|false the method number or FALSE on error
getMethod
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getName() {}
Get name of the entry Returns the name (with path) of the archive entry. @link https://php.net/manual/en/rarentry.getname.php @return string|false the entry name as a string, or FALSE on error.
getName
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getStream($password = '') {}
Get file handler for entry Returns a file handler that supports read operations. This handler provides on-the-fly decompression for this entry. The handler is not invalidated by calling {@see rar_close()}. @link https://php.net/manual/en/rarentry.getstream.php @param string $password The password used to encrypt this entry. If the entry is not encrypted, this value will not be used and can be omitted. If this parameter is omitted and the entry is encrypted, the password given to {@see rar_open()}, if any, will be used. If a wrong password is given, either explicitly or implicitly via {@see rar_open()}, this method's resulting stream will produce wrong output. If no password is given and one is required, this method will fail and return FALSE. You can check whether an entry is encrypted with {@see RarEntry::isEncrypted()}. @return resource|false file handler or FALSE on failure
getStream
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getUnpackedSize() {}
Get unpacked size of the entry @link https://php.net/manual/en/rarentry.getunpackedsize.php @return int|false the unpacked size, or FALSE on error
getUnpackedSize
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function getVersion() {}
Get minimum version of RAR program required to unpack the entry Returns minimum version of RAR program (e.g. WinRAR) required to unpack the entry. It is encoded as 10 * major version + minor version. @link https://php.net/manual/en/rarentry.getversion.php @return int|false the version or FALSE on error
getVersion
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function isDirectory() {}
Test whether an entry represents a directory @link https://php.net/manual/en/rarentry.isdirectory.php @return bool TRUE if this entry is a directory and FALSE otherwise.
isDirectory
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function isEncrypted() {}
Test whether an entry is encrypted @link https://php.net/manual/en/rarentry.isencrypted.php @return bool TRUE if the current entry is encrypted and FALSE otherwise
isEncrypted
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public static function isUsingExceptions() {}
Check whether error handling with exceptions is in use @link https://php.net/manual/en/rarexception.isusingexceptions.php @return bool TRUE if exceptions are being used, FALSE otherwise
isUsingExceptions
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public static function setUsingExceptions($using_exceptions) {}
Activate and deactivate error handling with exceptions @link https://php.net/manual/en/rarexception.setusingexceptions.php @param bool $using_exceptions Should be TRUE to activate exception throwing, FALSE to deactivate (the default)
setUsingExceptions
php
JetBrains/phpstorm-stubs
rar/rar.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/rar/rar.php
Apache-2.0
public function optimizeImageLayers() {}
(PECL imagick 2.0.0)<br/> Removes repeated portions of images to optimize @link https://php.net/manual/en/imagick.optimizeimagelayers.php @return bool <b>TRUE</b> on success. @throws ImagickException on error.
optimizeImageLayers
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function compareImageLayers($method) {}
(PECL imagick 2.0.0)<br/> Returns the maximum bounding region between images @link https://php.net/manual/en/imagick.compareimagelayers.php @param int $method <p> One of the layer method constants. </p> @return Imagick <b>TRUE</b> on success. @throws ImagickException on error.
compareImageLayers
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function pingImageBlob($image) {}
(PECL imagick 2.0.0)<br/> Quickly fetch attributes @link https://php.net/manual/en/imagick.pingimageblob.php @param string $image <p> A string containing the image. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
pingImageBlob
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function pingImageFile($filehandle, $fileName = null) {}
(PECL imagick 2.0.0)<br/> Get basic image attributes in a lightweight manner @link https://php.net/manual/en/imagick.pingimagefile.php @param resource $filehandle <p> An open filehandle to the image. </p> @param string $fileName [optional] <p> Optional filename for this image. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
pingImageFile
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function transposeImage() {}
(PECL imagick 2.0.0)<br/> Creates a vertical mirror image @link https://php.net/manual/en/imagick.transposeimage.php @return bool <b>TRUE</b> on success. @throws ImagickException on error.
transposeImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function transverseImage() {}
(PECL imagick 2.0.0)<br/> Creates a horizontal mirror image @link https://php.net/manual/en/imagick.transverseimage.php @return bool <b>TRUE</b> on success. @throws ImagickException on error.
transverseImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function trimImage($fuzz) {}
(PECL imagick 2.0.0)<br/> Remove edges from the image @link https://php.net/manual/en/imagick.trimimage.php @param float $fuzz <p> By default target must match a particular pixel color exactly. However, in many cases two colors may differ by a small amount. The fuzz member of image defines how much tolerance is acceptable to consider two colors as the same. This parameter represents the variation on the quantum range. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
trimImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function waveImage($amplitude, $length) {}
(PECL imagick 2.0.0)<br/> Applies wave filter to the image @link https://php.net/manual/en/imagick.waveimage.php @param float $amplitude <p> The amplitude of the wave. </p> @param float $length <p> The length of the wave. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
waveImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function vignetteImage($blackPoint, $whitePoint, $x, $y) {}
(PECL imagick 2.0.0)<br/> Adds vignette filter to the image @link https://php.net/manual/en/imagick.vignetteimage.php @param float $blackPoint <p> The black point. </p> @param float $whitePoint <p> The white point </p> @param int $x <p> X offset of the ellipse </p> @param int $y <p> Y offset of the ellipse </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
vignetteImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function uniqueImageColors() {}
(PECL imagick 2.0.0)<br/> Discards all but one of any pixel color @link https://php.net/manual/en/imagick.uniqueimagecolors.php @return bool <b>TRUE</b> on success. @throws ImagickException on error.
uniqueImageColors
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageMatte() {}
(PECL imagick 2.0.0)<br/> Return if the image has a matte channel @link https://php.net/manual/en/imagick.getimagematte.php @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure. @throws ImagickException on error.
getImageMatte
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0