Home
last modified time | relevance | path

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

/external/testng/src/main/java/org/testng/reporters/
DXMLReporterConfig.java162 private String timestampFormat = FMT_DEFAULT; field in XMLReporterConfig
205 return timestampFormat; in getTimestampFormat()
208 public void setTimestampFormat(String timestampFormat) { in setTimestampFormat() argument
209 this.timestampFormat = timestampFormat; in setTimestampFormat()
DXMLReporter.java245 public void setTimestampFormat(String timestampFormat) { in setTimestampFormat() argument
246 config.setTimestampFormat(timestampFormat); in setTimestampFormat()
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DTimestamps.java83 private static final ThreadLocal<SimpleDateFormat> timestampFormat = field in Timestamps
212 result.append(timestampFormat.get().format(date)); in toString()
256 Date date = timestampFormat.get().parse(secondValue); in parse()