Home
last modified time | relevance | path

Searched refs:ptm (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tools/aapt2/io/
DFileSystem.cpp69 struct tm* ptm; in GetModificationTime() local
71 ptm = localtime_r(&stat_buf.st_mtime, &tm_result); in GetModificationTime()
73 *buf = *ptm; in GetModificationTime()
/frameworks/base/tools/aapt/
DZipEntry.cpp348 struct tm* ptm = localtime_r(&even, &tmResult); in setModWhen() local
351 year = ptm->tm_year; in setModWhen()
355 unsigned short zdate = (year - 80) << 9 | (ptm->tm_mon + 1) << 5 | ptm->tm_mday; in setModWhen()
356 unsigned short ztime = ptm->tm_hour << 11 | ptm->tm_min << 5 | ptm->tm_sec >> 1; in setModWhen()
/frameworks/base/core/java/android/text/method/
DPasswordTransformationMethod.java241 public Visible(Spannable sp, PasswordTransformationMethod ptm) { in Visible() argument
243 mTransformer = ptm; in Visible()