Home
last modified time | relevance | path

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

/external/aws-sdk-java-v2/core/sdk-core/src/main/java/software/amazon/awssdk/core/traits/
DTimestampFormatTrait.java31 private TimestampFormatTrait(Format timestampFormat) { in TimestampFormatTrait() argument
32 this.format = timestampFormat; in TimestampFormatTrait()
42 public static TimestampFormatTrait create(Format timestampFormat) { in create() argument
43 return new TimestampFormatTrait(timestampFormat); in create()
/external/aws-sdk-java-v2/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/
DMember.java48 private String timestampFormat; field in Member
177 return timestampFormat; in getTimestampFormat()
180 public void setTimestampFormat(String timestampFormat) { in setTimestampFormat() argument
181 this.timestampFormat = timestampFormat; in setTimestampFormat()
DShape.java71 private String timestampFormat; field in Shape
310 return timestampFormat; in getTimestampFormat()
313 public void setTimestampFormat(String timestampFormat) { in setTimestampFormat() argument
314 this.timestampFormat = timestampFormat; in setTimestampFormat()
/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/perfetto/ui/src/frontend/viewer_page/
Dtime_axis_panel.ts21 import {timestampFormat} from '../../core/timestamp_format';
61 const timestampFormat = this.trace.timeline.timestampFormat; constant
62 switch (timestampFormat) {
90 assertUnreachable(timestampFormat);
126 const fmt = timestampFormat();
Dtime_selection_panel.ts22 import {timestampFormat} from '../../core/timestamp_format';
266 const fmt = timestampFormat();
Doverview_timeline_panel.ts27 import {timestampFormat} from '../../core/timestamp_format';
276 const fmt = timestampFormat();
/external/perfetto/ui/src/core/
Dtimeline.ts25 timestampFormat,
186 const fmt = timestampFormat();
210 get timestampFormat() {
211 return timestampFormat();
214 set timestampFormat(format: TimestampFormat) {
Dtimestamp_format.ts23 export function timestampFormat(): TimestampFormat { function
/external/perfetto/ui/src/components/widgets/
Dtimestamp_format_menu.ts31 active: value === attrs.trace.timeline.timestampFormat,
33 attrs.trace.timeline.timestampFormat = value;
Dduration_precision_menu_items.ts39 switch (attrs.trace.timeline.timestampFormat) {
Dtimestamp.ts79 const fmt = this.trace.timeline.timestampFormat;
/external/aws-sdk-java-v2/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/
DMemberModel.java96 private String timestampFormat; field in MemberModel
611 return timestampFormat; in getTimestampFormat()
614 public void setTimestampFormat(String timestampFormat) { in setTimestampFormat() argument
615 this.timestampFormat = timestampFormat; in setTimestampFormat()
618 public MemberModel withTimestampFormat(String timestampFormat) { in withTimestampFormat() argument
619 setTimestampFormat(timestampFormat); in withTimestampFormat()
/external/perfetto/ui/src/public/
Dtimeline.ts60 timestampFormat: TimestampFormat; property
/external/cronet/stable/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DTimestamps.java86 private static final ThreadLocal<SimpleDateFormat> timestampFormat = field in Timestamps
216 result.append(timestampFormat.get().format(date)); in toString()
260 Date date = timestampFormat.get().parse(secondValue); in parse()
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DTimestamps.java86 private static final ThreadLocal<SimpleDateFormat> timestampFormat = field in Timestamps
216 result.append(timestampFormat.get().format(date)); in toString()
260 Date date = timestampFormat.get().parse(secondValue); in parse()
/external/cronet/tot/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DTimestamps.java86 private static final ThreadLocal<SimpleDateFormat> timestampFormat = field in Timestamps
216 result.append(timestampFormat.get().format(date)); in toString()
260 Date date = timestampFormat.get().parse(secondValue); in parse()
/external/perfetto/ui/src/components/
Dtime_utils.ts33 const fmt = trace.timeline.timestampFormat;