Lines Matching refs:y1
504 ZEND_ARG_INFO(0, y1)
513 ZEND_ARG_INFO(0, y1)
522 ZEND_ARG_INFO(0, y1)
531 ZEND_ARG_INFO(0, y1)
710 ZEND_ARG_INFO(0, y1)
3168 /* {{{ proto bool imageline(resource im, int x1, int y1, int x2, int y2, int col)
3173 zend_long x1, y1, x2, y2, col;
3176 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3188 gdImageLine(im, x1, y1, x2, y2, col);
3193 /* {{{ proto bool imagedashedline(resource im, int x1, int y1, int x2, int y2, int col)
3198 zend_long x1, y1, x2, y2, col;
3201 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3209 gdImageDashedLine(im, x1, y1, x2, y2, col);
3214 /* {{{ proto bool imagerectangle(resource im, int x1, int y1, int x2, int y2, int col)
3219 zend_long x1, y1, x2, y2, col;
3222 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3230 gdImageRectangle(im, x1, y1, x2, y2, col);
3235 /* {{{ proto bool imagefilledrectangle(resource im, int x1, int y1, int x2, int y2, int col)
3240 zend_long x1, y1, x2, y2, col;
3243 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) {
3250 gdImageFilledRectangle(im, x1, y1, x2, y2, col);
3895 /* {{{ proto bool imagesetclip(resource im, int x1, int y1, int x2, int y2)
3901 zend_long x1, y1, x2, y2;
3903 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll", &im_zval, &x1, &y1, &x2, &y2) == FAILURE) {
3911 gdImageSetClip(im, x1, y1, x2, y2);
3922 int x1, y1, x2, y2;
3932 gdImageGetClip(im, &x1, &y1, &x2, &y2);
3936 add_next_index_long(return_value, y1);