Home
last modified time | relevance | path

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

12345

/PHP-5.5/
H A DINSTALL1992 think it is relative to your web root directory). Note that
H A DNEWS1229 . Fixed bug #53965 (<xsl:include> cannot find files with relative paths
2416 . Fixed bug #63921 (sqlite3::bindvalue and relative PHP functions aren't
6093 relative time string. (Derick)
6282 - Fixed bug #45044 (relative paths not resolved correctly). (Dmitry)
6503 a relative path. (Pierre)
6637 relative time strings. (Derick)
6639 relative path. (Pierre)
6800 - Fixed bug #45181 (chdir() should clear relative entries in stat cache).
7714 - Fixed bug #39351 (relative include fails on Solaris). (Dmitry, Tony)
7921 - Fixed bug #39791 (Crash in strtotime() on overly long relative date
[all …]
H A DREADME.UNIX-BUILD-SYSTEM71 E.g. this builds the three files which are located relative to the
92 Make sure to prefix *all* relative paths correctly with either
95 absolute paths or relative ones to the top build-directory.
H A Dacinclude.m4186 dnl Adds sources which are located relative to source-path to the
193 dnl the path is interpreted relative to the top build-directory.
232 dnl relative to source- or build-directory?
944 dnl "sources" is a list of files relative to the subdir which are used
H A Dconfigure.in383 dnl paths to the targets are relative to the build directory
/PHP-5.5/build/
H A Dlibtool.m42281 # If it is relative, then search for the first ld in PATH.
/PHP-5.5/ext/date/lib/
H A Dinterval.c103 t->relative.y = interval->y * bias; in timelib_add()
104 t->relative.m = interval->m * bias; in timelib_add()
105 t->relative.d = interval->d * bias; in timelib_add()
106 t->relative.h = interval->h * bias; in timelib_add()
107 t->relative.i = interval->i * bias; in timelib_add()
108 t->relative.s = interval->s * bias; in timelib_add()
138 t->relative.y = 0 - (interval->y * bias); in timelib_sub()
139 t->relative.m = 0 - (interval->m * bias); in timelib_sub()
140 t->relative.d = 0 - (interval->d * bias); in timelib_sub()
141 t->relative.h = 0 - (interval->h * bias); in timelib_sub()
[all …]
H A Dparse_date.c7224 s->time->relative.y = 0 - s->time->relative.y; in scan()
7225 s->time->relative.m = 0 - s->time->relative.m; in scan()
7226 s->time->relative.d = 0 - s->time->relative.d; in scan()
7227 s->time->relative.h = 0 - s->time->relative.h; in scan()
7228 s->time->relative.i = 0 - s->time->relative.i; in scan()
7229 s->time->relative.s = 0 - s->time->relative.s; in scan()
7230 s->time->relative.weekday = 0 - s->time->relative.weekday; in scan()
7235 s->time->relative.special.amount = 0 - s->time->relative.special.amount; in scan()
21322 s->time->relative.s += i; in scan()
21774 s->time->relative.d = 1; in scan()
[all …]
H A Dparse_date.re994 s->time->relative.d = 1;
1533 s->time->relative.y = 0 - s->time->relative.y;
1534 s->time->relative.m = 0 - s->time->relative.m;
1535 s->time->relative.d = 0 - s->time->relative.d;
1536 s->time->relative.h = 0 - s->time->relative.h;
1537 s->time->relative.i = 0 - s->time->relative.i;
1538 s->time->relative.s = 0 - s->time->relative.s;
1539 s->time->relative.weekday = 0 - s->time->relative.weekday;
1544 s->time->relative.special.amount = 0 - s->time->relative.special.amount;
1687 relative
[all …]
H A Dtimelib.c240 d->relative.y, d->relative.m, d->relative.d, d->relative.h, d->relative.i, d->relative.s); in timelib_dump_date()
241 if (d->relative.first_last_day_of != 0) { in timelib_dump_date()
242 switch (d->relative.first_last_day_of) { in timelib_dump_date()
251 if (d->relative.have_weekday_relative) { in timelib_dump_date()
252 printf(" / %d.%d", d->relative.weekday, d->relative.weekday_behavior); in timelib_dump_date()
254 if (d->relative.have_special_relative) { in timelib_dump_date()
255 switch (d->relative.special.type) { in timelib_dump_date()
257 printf(" / %lld weekday", d->relative.special.amount); in timelib_dump_date()
H A Dtimelib_structs.h171 timelib_rel_time relative; member
H A Dtm2unixtime.c152 time->relative.weekday = 7; in do_adjust_for_weekday()
159 …if ((time->relative.d < 0 && difference < 0) || (time->relative.d >= 0 && difference <= -time->rel… in do_adjust_for_weekday()
200 time->s += time->relative.s; in do_adjust_relative()
201 time->i += time->relative.i; in do_adjust_relative()
202 time->h += time->relative.h; in do_adjust_relative()
204 time->d += time->relative.d; in do_adjust_relative()
205 time->m += time->relative.m; in do_adjust_relative()
282 memset(&(time->relative.special), 0, sizeof(time->relative.special)); in do_adjust_special()
292 time->relative.m = 0; in do_adjust_special_early()
297 time->relative.m = 0; in do_adjust_special_early()
[all …]
/PHP-5.5/ext/date/
H A Dphp_date.c1894 it_time->relative = *object->interval; in date_period_it_has_more()
2983 add_assoc_long(element, "year", parsed_time->relative.y); in php_date_do_return_parsed_time()
2984 add_assoc_long(element, "month", parsed_time->relative.m); in php_date_do_return_parsed_time()
2985 add_assoc_long(element, "day", parsed_time->relative.d); in php_date_do_return_parsed_time()
2986 add_assoc_long(element, "hour", parsed_time->relative.h); in php_date_do_return_parsed_time()
2989 if (parsed_time->relative.have_weekday_relative) { in php_date_do_return_parsed_time()
2992 …if (parsed_time->relative.have_special_relative && (parsed_time->relative.special.type == TIMELIB_… in php_date_do_return_parsed_time()
2995 if (parsed_time->relative.first_last_day_of) { in php_date_do_return_parsed_time()
3085 memcpy(&dateobj->time->relative, &tmp_time->relative, sizeof(struct timelib_rel_time)); in php_date_modify()
3512 memset(&dateobj->time->relative, 0, sizeof(dateobj->time->relative)); in php_date_isodate_set()
[all …]
/PHP-5.5/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 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 Ddate_timezone_get_error.phpt6 * Description: Return time zone relative to given DateTimeInterface
H A Ddate_timezone_get_variation1.phpt6 * Description: Return time zone relative to given DateTimeInterface
H A Dstrtotime-relative.phpt2 strtotime() with relative offsets
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch2327 /* Third, try to get magic file relative to dll location */
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic17981 # to be made relative to the search). In any case, if the file has ID3

Completed in 160 milliseconds

12345