Home
last modified time | relevance | path

Searched refs:custom_format (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/lldb/source/Core/
DValueObject.cpp1181 ValueObjectRepresentationStyle val_obj_display, Format custom_format) { in HasSpecialPrintableRepresentation() argument
1186 (custom_format == eFormatCString || custom_format == eFormatCharArray || in HasSpecialPrintableRepresentation()
1187 custom_format == eFormatChar || custom_format == eFormatVectorOfChar)) in HasSpecialPrintableRepresentation()
1191 if ((custom_format == eFormatBytes) || in HasSpecialPrintableRepresentation()
1192 (custom_format == eFormatBytesWithASCII)) in HasSpecialPrintableRepresentation()
1195 if ((custom_format == eFormatVectorOfChar) || in HasSpecialPrintableRepresentation()
1196 (custom_format == eFormatVectorOfFloat32) || in HasSpecialPrintableRepresentation()
1197 (custom_format == eFormatVectorOfFloat64) || in HasSpecialPrintableRepresentation()
1198 (custom_format == eFormatVectorOfSInt16) || in HasSpecialPrintableRepresentation()
1199 (custom_format == eFormatVectorOfSInt32) || in HasSpecialPrintableRepresentation()
[all …]
DFormatEntity.cpp688 Format custom_format = eFormatInvalid; in DumpValue() local
702 custom_format = entry.fmt; in DumpValue()
710 custom_format = entry.fmt; in DumpValue()
866 custom_format)) { in DumpValue()
869 str_temp, val_obj_display, custom_format); in DumpValue()
884 s, val_obj_display, custom_format, in DumpValue()
912 custom_format); in DumpValue()
977 custom_format); in DumpValue()
/external/rust/crates/android_logger/src/
Dlib.rs171 let _ = match (custom_tag, &config.custom_format) { in log()
213 custom_format: Option<FormatFn>, field
222 custom_format: None, in default()
268 self.custom_format = Some(Box::new(format)); in format()
/external/rust/crates/env_logger/src/fmt/
Dmod.rs146 pub custom_format: Option<FormatFn>, field
158 custom_format: None, in default()
182 if let Some(fmt) = built.custom_format { in build()
/external/llvm-project/lldb/include/lldb/Core/
DValueObject.h514 lldb::Format custom_format);
525 lldb::Format custom_format = lldb::eFormatInvalid,
/external/rust/crates/env_logger/src/
Dlib.rs577 self.format.custom_format = Some(Box::new(format)); in format()