Home
last modified time | relevance | path

Searched refs:relative (Results 1 – 25 of 123) sorted by path

12345

/PHP-7.4/
H A DNEWS161 . Fixed bug #71542 (disk_total_space does not work with relative paths). (cmb)
2266 relative queries). (Ahmed Abdou)
H A Dconfigure.ac325 dnl Paths to the targets are relative to the build directory.
/PHP-7.4/Zend/tests/type_declarations/
H A Dscalar_relative_typehint_disallowed.phpt2 Scalar type - disallow relative types
/PHP-7.4/build/
H A Dlibtool.m42277 # If it is relative, then search for the first ld in PATH.
H A Dphp.m4182 dnl Adds sources which are located relative to source-path to the array of type
188 dnl interpreted relative to the top build-directory.
926 dnl "sources" is a list of files relative to the subdir which are used to build
/PHP-7.4/docs/
H A Dunix-build-system.md69 E.g. this builds the three files which are located relative to the extension
92 Make sure to prefix *all* relative paths correctly with either `$(builddir)` or
94 anymore, we must use either absolute paths or relative ones to the top
/PHP-7.4/ext/date/lib/
H A Dinterval.c112 t->relative.y = interval->y * bias; in timelib_add()
113 t->relative.m = interval->m * bias; in timelib_add()
114 t->relative.d = interval->d * bias; in timelib_add()
115 t->relative.h = interval->h * bias; in timelib_add()
116 t->relative.i = interval->i * bias; in timelib_add()
117 t->relative.s = interval->s * bias; in timelib_add()
118 t->relative.us = interval->us * bias; in timelib_add()
148 t->relative.y = 0 - (interval->y * bias); in timelib_sub()
149 t->relative.m = 0 - (interval->m * bias); in timelib_sub()
150 t->relative.d = 0 - (interval->d * bias); in timelib_sub()
[all …]
H A Dparse_date.c6696 s->time->relative.y = 0 - s->time->relative.y; in scan()
6697 s->time->relative.m = 0 - s->time->relative.m; in scan()
6698 s->time->relative.d = 0 - s->time->relative.d; in scan()
6699 s->time->relative.h = 0 - s->time->relative.h; in scan()
6700 s->time->relative.i = 0 - s->time->relative.i; in scan()
6701 s->time->relative.s = 0 - s->time->relative.s; in scan()
6702 s->time->relative.weekday = 0 - s->time->relative.weekday; in scan()
6707 s->time->relative.special.amount = 0 - s->time->relative.special.amount; in scan()
21485 s->time->relative.s += i; in scan()
21993 s->time->relative.d = 1; in scan()
[all …]
H A Dparse_date.re1068 s->time->relative.d = 1;
1635 s->time->relative.y = 0 - s->time->relative.y;
1636 s->time->relative.m = 0 - s->time->relative.m;
1637 s->time->relative.d = 0 - s->time->relative.d;
1638 s->time->relative.h = 0 - s->time->relative.h;
1639 s->time->relative.i = 0 - s->time->relative.i;
1640 s->time->relative.s = 0 - s->time->relative.s;
1641 s->time->relative.weekday = 0 - s->time->relative.weekday;
1646 s->time->relative.special.amount = 0 - s->time->relative.special.amount;
1789 relative
[all …]
H A Dtimelib.c316 d->relative.y, d->relative.m, d->relative.d, d->relative.h, d->relative.i, d->relative.s); in timelib_dump_date()
317 if (d->relative.us) { in timelib_dump_date()
318 printf(" 0.%06lld", d->relative.us); in timelib_dump_date()
320 if (d->relative.first_last_day_of != 0) { in timelib_dump_date()
321 switch (d->relative.first_last_day_of) { in timelib_dump_date()
330 if (d->relative.have_weekday_relative) { in timelib_dump_date()
331 printf(" / %d.%d", d->relative.weekday, d->relative.weekday_behavior); in timelib_dump_date()
333 if (d->relative.have_special_relative) { in timelib_dump_date()
334 switch (d->relative.special.type) { in timelib_dump_date()
336 printf(" / %lld weekday", d->relative.special.amount); in timelib_dump_date()
H A Dtimelib.h214 timelib_rel_time relative; member
H A Dtm2unixtime.c164 time->relative.weekday = 7; in do_adjust_for_weekday()
172 …if ((time->relative.d < 0 && difference < 0) || (time->relative.d >= 0 && difference <= -time->rel… in do_adjust_for_weekday()
250 time->s += time->relative.s; in do_adjust_relative()
251 time->i += time->relative.i; in do_adjust_relative()
252 time->h += time->relative.h; in do_adjust_relative()
254 time->d += time->relative.d; in do_adjust_relative()
332 memset(&(time->relative.special), 0, sizeof(time->relative.special)); in do_adjust_special()
342 time->relative.m = 0; in do_adjust_special_early()
347 time->relative.m = 0; in do_adjust_special_early()
511 …time->have_relative = time->relative.have_weekday_relative = time->relative.have_special_relative … in timelib_update_ts()
[all …]
/PHP-7.4/ext/date/
H A Dphp_date.c1940 it_time->relative = *object->interval; in date_period_it_has_more()
3165 add_assoc_long(&element, "year", parsed_time->relative.y); in php_date_do_return_parsed_time()
3166 add_assoc_long(&element, "month", parsed_time->relative.m); in php_date_do_return_parsed_time()
3167 add_assoc_long(&element, "day", parsed_time->relative.d); in php_date_do_return_parsed_time()
3171 if (parsed_time->relative.have_weekday_relative) { in php_date_do_return_parsed_time()
3174 …if (parsed_time->relative.have_special_relative && (parsed_time->relative.special.type == TIMELIB_… in php_date_do_return_parsed_time()
3177 if (parsed_time->relative.first_last_day_of) { in php_date_do_return_parsed_time()
3266 memcpy(&dateobj->time->relative, &tmp_time->relative, sizeof(timelib_rel_time)); in php_date_modify()
3304 memset(&dateobj->time->relative, 0, sizeof(dateobj->time->relative)); in php_date_modify()
3714 memset(&dateobj->time->relative, 0, sizeof(dateobj->time->relative)); in php_date_isodate_set()
[all …]
/PHP-7.4/ext/date/tests/
H A DDateTime_getTimeZone_basic1.phpt6 * Description: Return time zone relative to given DateTime
H A Dbug35630.phpt2 Bug #35630 (strtotime() crashes on non-separated relative modifiers)
H A Dbug40861.phpt2 Bug #40861 (Multiple +/- on relative units breaks strtotime())
H A Dbug50055.phpt2 Bug #50555 (DateTime::sub() allows 'relative' time modifications).
26 Warning: date_sub(): Only non-special relative time specifications are supported for subtraction in…
30 Warning: date_sub(): Only non-special relative time specifications are supported for subtraction in…
H A Dbug51096.phpt18 $rel = $result['relative'];
H A Dbug73858.phpt2 Bug #73858: diff() of two relative/described DateTimes is wrong
H A Ddate_create-relative.phpt2 date_create() with large relative offsets
14 // Most offsets tested in strtotime-relative.phpt. These are tests for dates outside the 32-bit ran…
H A Ddate_timezone_get_basic1.phpt6 * Description: Return time zone relative to given DateTime
H A Dstrtotime-relative.phpt2 strtotime() with relative offsets
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch2797 - /* Fourth, try to get magic file relative to exe location */
2800 - /* Fifth, try to get magic file relative to dll location */
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic12834 # handle only name string offset 0 because do not know how to add 2 relative offsets
15167 >>>64 ubelong =1 \b, relative colorimetric
24822 # jump relative 22 ( 8 + 16) bytes forward points after end of file or to
28432 # to be made relative to the search). In any case, if the file has ID3
28891 # only solution to search again from beginning , because relative offsets changes when use is called
29018 # relative offset not working
H A Dmagic私はガラスを食べられます12834 # handle only name string offset 0 because do not know how to add 2 relative offsets
15167 >>>64 ubelong =1 \b, relative colorimetric
24822 # jump relative 22 ( 8 + 16) bytes forward points after end of file or to
28432 # to be made relative to the search). In any case, if the file has ID3
28891 # only solution to search again from beginning , because relative offsets changes when use is called
29018 # relative offset not working

Completed in 288 milliseconds

12345