/external/clang/test/SemaTemplate/ |
D | explicit-instantiation.cpp | 64 void print_type() {} // expected-note {{candidate template ignored: could not match 'void ()' again… in print_type() function 66 template void print_type<int>(); 67 template void print_type<float>(); 70 void print_type(T *) {} // expected-note {{candidate template ignored: could not match 'void (int *… in print_type() function 72 template void print_type(int*); 73 template void print_type<int>(float*); // expected-error{{does not refer}} 75 void print_type(double*); 76 template void print_type<double>(double*);
|
/external/coreboot/src/vendorcode/mediatek/mt8195/dramc/ |
D | dramc_debug.c | 247 static const char* print_EYESCAN_LOG_type(U8 print_type) in print_EYESCAN_LOG_type() argument 249 switch (print_type) in print_EYESCAN_LOG_type() 1083 static void print_EyeScanVcent_for_HQA_report_used(DRAMC_CTX_T *p, U8 print_type, U8 u1ChannelIdx, … in print_EyeScanVcent_for_HQA_report_used() argument 1119 if (print_type == EYESCAN_TYPE_RX) in print_EyeScanVcent_for_HQA_report_used() 1158 if (print_type == EYESCAN_TYPE_CBT) in print_EyeScanVcent_for_HQA_report_used() 1169 if (print_type == EYESCAN_TYPE_RX) in print_EyeScanVcent_for_HQA_report_used() 1182 if (print_type == EYESCAN_TYPE_TX) in print_EyeScanVcent_for_HQA_report_used() 1201 mcSHOW_DBG_MSG(("%s Eye Scan Vcent Voltage\n", print_EYESCAN_LOG_type(print_type))); in print_EyeScanVcent_for_HQA_report_used() 1202 if (print_type == EYESCAN_TYPE_RX) in print_EyeScanVcent_for_HQA_report_used() 1204 …t(p, p->channel, p->rank, HQA_REPORT_FORMAT2_1, print_EYESCAN_LOG_type(print_type), "_Final_Vref V… in print_EyeScanVcent_for_HQA_report_used() [all …]
|
/external/iptables/extensions/ |
D | libip6t_mh.c | 149 static void print_type(uint8_t type, int numeric) in print_type() function 171 print_type(min, numeric); in print_types() 174 print_type(min, numeric); in print_types() 176 print_type(max, numeric); in print_types()
|
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/rustc-demangle-0.1.24/src/ |
D | v0.rs | 865 self.print_type()?; in print_path() 898 self.print_type() in print_generic_arg() 902 fn print_type(&mut self) -> fmt::Result { in print_type() method 924 self.print_type()?; in print_type() 934 self.print_type()?; in print_type() 939 self.print_type()?; in print_type() 948 let count = self.print_sep_list(Self::print_type, ", ")?; in print_type() 990 this.print_sep_list(Self::print_type, ", ")?; in print_type() 997 this.print_type()?; in print_type() 1019 self.print_backref(Self::print_type)?; in print_type() [all …]
|
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/rustc-demangle-0.1.24/src/ |
D | v0.rs | 865 self.print_type()?; in print_path() 898 self.print_type() in print_generic_arg() 902 fn print_type(&mut self) -> fmt::Result { in print_type() method 924 self.print_type()?; in print_type() 934 self.print_type()?; in print_type() 939 self.print_type()?; in print_type() 948 let count = self.print_sep_list(Self::print_type, ", ")?; in print_type() 990 this.print_sep_list(Self::print_type, ", ")?; in print_type() 997 this.print_type()?; in print_type() 1019 self.print_backref(Self::print_type)?; in print_type() [all …]
|
/external/rust/android-crates-io/crates/rustc-demangle/src/ |
D | v0.rs | 865 self.print_type()?; in print_path() 898 self.print_type() in print_generic_arg() 902 fn print_type(&mut self) -> fmt::Result { in print_type() method 924 self.print_type()?; in print_type() 934 self.print_type()?; in print_type() 939 self.print_type()?; in print_type() 948 let count = self.print_sep_list(Self::print_type, ", ")?; in print_type() 990 this.print_sep_list(Self::print_type, ", ")?; in print_type() 997 this.print_type()?; in print_type() 1019 self.print_backref(Self::print_type)?; in print_type() [all …]
|
/external/rust/android-crates-io/crates/bindgen/ |
D | clang.rs | 2091 fn print_type<S: AsRef<str>>(depth: isize, prefix: S, ty: &Type) { in ast_dump() function 2131 print_type(depth, String::from(prefix) + "canonical.", &canonical); in ast_dump() 2137 print_type(depth, String::from(prefix) + "pointee.", &pointee); in ast_dump() 2144 print_type(depth, String::from(prefix) + "elements.", &elem); in ast_dump() 2151 print_type(depth, String::from(prefix) + "return.", &ret); in ast_dump() 2158 print_type(depth, String::from(prefix) + "named.", &named); in ast_dump() 2167 print_type(depth, "type.", &ty); in ast_dump()
|
/external/ComputeLibrary/arm_compute/core/ |
D | Utils.h | 1300 using print_type = typename std::conditional<std::is_floating_point<T>::value, T, int>::type; variable 1324 s << std::right << static_cast<print_type>(ptr[i]) << element_delim; 1343 using print_type = typename std::conditional<std::is_floating_point<T>::value, T, int>::type; in max_consecutive_elements_display_width_impl() local 1363 ss << static_cast<print_type>(ptr[i]); in max_consecutive_elements_display_width_impl()
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/x3/char/ |
D | char_class.hpp | 112 using standard::print_type;
|
/external/pytorch/torch/csrc/jit/mobile/ |
D | module.cpp | 317 static std::optional<std::string> print_type(const c10::Type& t) { in print_type() function 341 type_name_list.push_back(tp->annotation_str(print_type)); in get_module_info()
|
/external/pytorch/torch/csrc/jit/serialization/ |
D | flatbuffer_serializer.cpp | 63 auto print_type(const c10::Type& t) -> std::optional<std::string> { in print_type() function 474 realType(list.type<c10::Type>())->annotation_str(print_type))); in listToFB() 497 realType(ivalue.type<c10::Type>())->annotation_str(print_type))); in dictToFB()
|
/external/coreboot/src/vendorcode/mediatek/mt8195/include/ |
D | dramc_int_global.h | 87 EXTERN void print_EYESCAN_LOG_message(DRAMC_CTX_T *p, U8 print_type);
|
/external/coreboot/src/vendorcode/mediatek/mt8192/include/ |
D | dramc_int_global.h | 88 EXTERN void print_EYESCAN_LOG_message(DRAMC_CTX_T *p, U8 print_type);
|
/external/coreboot/src/vendorcode/mediatek/mt8192/dramc/ |
D | dramc_pi_calibration_api.c | 361 U8* print_Impedence_LOG_type(U8 print_type) in print_Impedence_LOG_type() argument 363 switch (print_type) in print_Impedence_LOG_type()
|
/external/mesa3d/docs/relnotes/ |
D | 20.2.0.rst | 3339 - glsl: make print_type non-static for debugging
|