Searched refs:ta (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_3/ |
| H A D | run-tests.php | 907 $ta = strpos($a, "{$cwd}/tests") === 0 ? 1 + (strpos($a, "{$cwd}/tests/run-test") === 0 ? 1 : 0) : 0; variable 910 if ($ta == $tb) { 913 return $tb - $ta;
|
| H A D | server-tests.php | 730 $ta = strpos($a, "{$this->cwd}/tests")===0 ? 1 + (strpos($a, "{$this->cwd}/tests/run-test")===0 ? 1 : 0) : 0; variable 732 if ($ta == $tb) { 735 return $tb - $ta;
|
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regexec.c | 1210 TrapEnsureArg* ta = (TrapEnsureArg* )arg; local 1212 if (ta->state == 0) { /* trap_exec() is not normal return */ 1213 ONIG_STATE_DEC_THREAD(ta->reg); 1214 if (! IS_NULL(ta->msa->stack_p) && ta->stk_base != ta->msa->stack_p) 1215 xfree(ta->stk_base); 1217 MATCH_ARG_FREE(*(ta->msa)); 1226 TrapEnsureArg* ta; local 1230 ta 1239 TrapEnsureArg ta; local [all...] |
| /PHP_5_3/ext/calendar/ |
| H A D | cal_unix.c | 32 struct tm *ta, tmbuf; local 44 if (!(ta = php_localtime_r(&ts, &tmbuf))) { 48 RETURN_LONG(GregorianToSdn(ta->tm_year+1900, ta->tm_mon+1, ta->tm_mday));
|
| /PHP_5_3/ext/soap/ |
| H A D | php_encoding.c | 3008 struct tm *ta, tmbuf; local 3023 ta = php_localtime_r(×tamp, &tmbuf); 3024 /*ta = php_gmtime_r(×tamp, &tmbuf);*/ 3025 if (!ta) { 3030 while ((real_len = strftime(buf, buf_len, format, ta)) == buf_len || real_len == 0) { 3038 snprintf(tzbuf, sizeof(tzbuf), "%c%02d:%02d", (ta->tm_gmtoff < 0) ? '-' : '+', abs(ta->tm_gmtoff / 3600), abs( (ta->tm_gmtoff % 3600) / 60 )); 3041 snprintf(tzbuf, sizeof(tzbuf), "%c%02d:%02d", ((ta->tm_isdst ? _timezone - 3600:_timezone)>0)?'-':'+', abs((ta [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | info.c | 1310 struct tm *ta, tmbuf; local 1313 ta = php_localtime_r(&the_time, &tmbuf); 1315 if (ta && (ta->tm_mon==3) && (ta->tm_mday==1)) {
|
| /PHP_5_3/main/ |
| H A D | main.c | 1342 struct tm *ta, tmbuf; local 1348 ta = php_localtime_r(&curtime, &tmbuf); 1349 datetime_str = php_asctime_r(ta, asctimebuf);
|
| /PHP_5_3/ext/date/ |
| H A D | php_date.c | 895 struct tm *ta, tmbuf; local 900 ta = php_localtime_r(&the_time, &tmbuf); 901 if (ta) { 902 tzid = timelib_timezone_id_from_abbr(ta->tm_zone, ta->tm_gmtoff, ta->tm_isdst); 908 php_error_docref(NULL TSRMLS_CC, E_WARNING, DATE_TZ_ERRMSG "We selected '%s' for '%s/%.1f/%s' instead", tzid, ta ? ta->tm_zone : "Unknown", ta ? (float) (ta 1608 struct tm ta; local [all...] |
Completed in 57 milliseconds