Searched defs:period (Results 1 - 3 of 3) sorted by relevance
| /PHP_TRUNK/ext/standard/ |
| H A D | user_filters.c | 299 char *period; local 306 if ((period = strrchr(filtername, '.'))) { 311 period = wildcard + (period - filtername); 312 while (period) { 313 *period = '\0'; 316 period = NULL; 318 *period = '\0'; 319 period = strrchr(wildcard, '.');
|
| /PHP_TRUNK/main/streams/ |
| H A D | filter.c | 258 char *period; local 264 } else if ((period = strrchr(filtername, '.'))) { 270 period = wildname + (period - filtername); 271 while (period && !filter) { 272 *period = '\0'; 278 *period = '\0'; 279 period = strrchr(wildname, '.');
|
| /PHP_TRUNK/ext/date/lib/ |
| H A D | parse_iso_intervals.c | 97 struct timelib_rel_time *period; member in struct:Scanner 351 DEBUG_OUTPUT("period"); 366 case 'Y': s->period->y = nr; break; 367 case 'W': s->period->d = nr * 7; break; 368 case 'D': s->period->d = nr; break; 369 case 'H': s->period->h = nr; break; 370 case 'S': s->period->s = nr; break; 373 s->period->i = nr; 375 s->period->m = nr; 379 add_error(s, "Undefined period specifie 1007 timelib_strtointerval(char *s, int len, timelib_time **begin, timelib_time **end, timelib_rel_time **period, int *recurrences, struct timelib_error_container **errors) argument [all...] |
Completed in 4 milliseconds