Searched refs:localTM (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
H A DCurrentTime.h50 inline void getLocalTime(const time_t* localTime, struct tm* localTM) argument
53 *localTM = *localtime(localTime);
55 localtime_s(localTM, localTime);
57 localtime_r(localTime, localTM);
H A DDateMath.cpp446 tm localTM; local
447 getLocalTime(&localTime, &localTM);
449 double diff = ((localTM.tm_hour - offsetHour) * secondsPerHour) + ((localTM.tm_min - offsetMinute) * 60);
/external/webkit/Source/JavaScriptCore/runtime/
H A DDateConstructor.cpp143 tm localTM; local
144 getLocalTime(&localTime, &localTM);
145 GregorianDateTime ts(exec, localTM);
H A DDatePrototype.cpp211 struct tm localTM = gdt; local
215 localTM.tm_year = equivalentYearForDST(year) - 1900;
232 size_t ret = strftime(timebuffer, bufsize, formatString, &localTM);
235 size_t ret = strftime(timebuffer, bufsize, formatStrings[format], &localTM);
246 snprintf(yearString, yearLen, "%d", localTM.tm_year + 1900);

Completed in 176 milliseconds