/third_party/gn/src/gn/ |
D | c_tool.cc | 237 bool CTool::ValidateSubstitution(const Substitution* sub_type) const { in ValidateSubstitution() 241 return IsValidCompilerSubstitution(sub_type); in ValidateSubstitution() 243 return IsValidSwiftCompilerSubstitution(sub_type); in ValidateSubstitution() 245 return IsValidALinkSubstitution(sub_type); in ValidateSubstitution() 248 return IsValidLinkerSubstitution(sub_type); in ValidateSubstitution() 253 bool CTool::ValidateOutputSubstitution(const Substitution* sub_type) const { in ValidateOutputSubstitution() 257 return IsValidCompilerOutputsSubstitution(sub_type); in ValidateOutputSubstitution() 259 return IsValidSwiftCompilerOutputsSubstitution(sub_type); in ValidateOutputSubstitution() 263 return IsValidLinkerOutputsSubstitution(sub_type); in ValidateOutputSubstitution()
|
D | general_tool.cc | 42 bool GeneralTool::ValidateSubstitution(const Substitution* sub_type) const { in ValidateSubstitution() 44 return IsValidToolSubstitution(sub_type); in ValidateSubstitution() 46 return IsValidCopySubstitution(sub_type); in ValidateSubstitution() 48 return IsValidCompileXCassetsSubstitution(sub_type); in ValidateSubstitution()
|
D | rust_tool.cc | 121 bool RustTool::ValidateSubstitution(const Substitution* sub_type) const { in ValidateSubstitution() 123 return IsValidRustLinkerSubstitution(sub_type); in ValidateSubstitution() 125 return IsValidRustSubstitution(sub_type); in ValidateSubstitution()
|
D | builtin_tool.cc | 42 bool BuiltinTool::ValidateSubstitution(const Substitution* sub_type) const { in ValidateSubstitution() 44 return IsValidToolSubstitution(sub_type); in ValidateSubstitution()
|
D | c_tool.h | 49 bool ValidateSubstitution(const Substitution* sub_type) const override; 100 bool ValidateOutputSubstitution(const Substitution* sub_type) const;
|
D | builtin_tool.h | 31 bool ValidateSubstitution(const Substitution* sub_type) const override;
|
D | general_tool.h | 36 bool ValidateSubstitution(const Substitution* sub_type) const override;
|
D | rust_tool.h | 39 bool ValidateSubstitution(const Substitution* sub_type) const override;
|
/third_party/rust/crates/clap/clap_derive/src/derives/ |
D | args.rs | 26 use crate::utils::{inner_type, sub_type, Sp, Ty}; 186 let subcmd_type = match (**ty, sub_type(&field.ty)) { in gen_augment() 187 (Ty::Option, Some(sub_type)) => sub_type, in gen_augment() 216 let inner_type = match (**ty, sub_type(&field.ty)) { in gen_augment() 217 (Ty::Option, Some(sub_type)) => sub_type, in gen_augment() 437 let subcmd_type = match (**ty, sub_type(&field.ty)) { in gen_constructor() 438 (Ty::Option, Some(sub_type)) => sub_type, in gen_constructor() 476 let inner_type = match (**ty, sub_type(&field.ty)) { in gen_constructor() 477 (Ty::Option, Some(sub_type)) => sub_type, in gen_constructor() 557 let subcmd_type = match (**ty, sub_type(&field.ty)) { in gen_updater() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | avs.c | 58 AvsVideoSubType sub_type; in avs_decode_frame() local 72 sub_type = buf[0]; in avs_decode_frame() 90 sub_type = buf[0]; in avs_decode_frame() 98 switch (sub_type) { in avs_decode_frame() 124 if (sub_type != AVS_I_FRAME) { in avs_decode_frame() 134 if (sub_type == AVS_I_FRAME || get_bits1(&change_map)) { in avs_decode_frame() 147 if (sub_type != AVS_I_FRAME) in avs_decode_frame()
|
D | g2meet.c | 1057 int sub_type; in kempf_decode_tile() local 1070 sub_type = hdr >> 5; in kempf_decode_tile() 1071 if (sub_type == 0) { in kempf_decode_tile() 1079 } else if (sub_type == 1) { in kempf_decode_tile() 1084 if (sub_type != 2) { in kempf_decode_tile() 1093 if (sub_type != 2) { in kempf_decode_tile() 1107 if (src_end - src < zsize + (sub_type != 2)) in kempf_decode_tile() 1115 if (sub_type == 2) { in kempf_decode_tile()
|
D | cavsdec.c | 784 enum cavs_sub_mb sub_type[4]; in decode_mb_b() local 821 sub_type[block] = get_bits(&h->gb, 2); in decode_mb_b() 823 switch (sub_type[block]) { in decode_mb_b() 868 if (sub_type[block] == B_SUB_BWD) in decode_mb_b()
|
/third_party/rust/crates/clap/clap_derive/src/utils/ |
D | ty.rs | 61 Ty::Vec | Ty::Option => sub_type(field_ty).unwrap_or(field_ty), in inner_type() 63 sub_type(field_ty).and_then(sub_type).unwrap_or(field_ty) in inner_type() 65 Ty::OptionVecVec => sub_type(field_ty) in inner_type() 66 .and_then(sub_type) in inner_type() 67 .and_then(sub_type) in inner_type() 73 pub fn sub_type(ty: &syn::Type) -> Option<&syn::Type> { in sub_type() function
|
D | mod.rs | 10 ty::{inner_type, is_simple_ty, sub_type, subty_if_name, Ty},
|
/third_party/openh264/codec/common/inc/ |
D | wels_common_defs.h | 321 #define IS_SUB_8x8(sub_type) (((sub_type)&SUB_MB_TYPE_8x8) != 0) argument 322 #define IS_SUB_8x4(sub_type) (((sub_type)&SUB_MB_TYPE_8x4) != 0) argument 323 #define IS_SUB_4x8(sub_type) (((sub_type)&SUB_MB_TYPE_4x8) != 0) argument 324 #define IS_SUB_4x4(sub_type) (((sub_type)&SUB_MB_TYPE_4x4) != 0) argument
|
/third_party/ffmpeg/libavformat/ |
D | avs.c | 93 AvsBlockType type, int sub_type, int size, in avs_read_video_packet() argument 111 pkt->data[palette_size + 0] = sub_type; in avs_read_video_packet() 122 if (sub_type == 0) in avs_read_video_packet() 153 int sub_type = 0, size = 0; in avs_read_packet() local 171 sub_type = avio_r8(s->pb); in avs_read_packet() 204 return avs_read_video_packet(s, pkt, type, sub_type, size, in avs_read_packet()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Demangle/ |
D | ItaniumDemangle.cpp | 834 db.subs.push_back(typename C::sub_type(1, db.names.back())); in parse_unresolved_type() 847 db.subs.push_back(typename C::sub_type(1, db.names.back())); in parse_unresolved_type() 862 db.subs.push_back(typename C::sub_type(1, db.names.back())); in parse_unresolved_type() 1707 db.subs.push_back(typename C::sub_type(1, db.names.back())); in parse_type() 1717 db.subs.push_back(typename C::sub_type(1, db.names.back())); in parse_type() 1726 db.subs.push_back(typename C::sub_type(1, db.names.back())); in parse_type() 1736 db.subs.push_back(typename C::sub_type(1, db.names.back())); in parse_type() 1745 db.subs.push_back(typename C::sub_type(1, db.names.back())); in parse_type() 1833 db.subs.push_back(typename C::sub_type(1, db.names.back())); in parse_type() 1865 db.subs.push_back(typename C::sub_type(1, db.names.back())); in parse_type() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_interfaces.cpp | 335 auto sub_type = type; in GetLocationsForVariable() local 347 sub_type = _.FindDef(sub_type_id); in GetLocationsForVariable() 352 if (auto error = NumConsumedLocations(_, sub_type, &num_locations)) in GetLocationsForVariable() 355 uint32_t num_components = NumConsumedComponents(_, sub_type); in GetLocationsForVariable()
|
/third_party/spirv-tools/source/val/ |
D | validate_interfaces.cpp | 348 auto sub_type = type; in GetLocationsForVariable() local 360 sub_type = _.FindDef(sub_type_id); in GetLocationsForVariable() 365 if (auto error = NumConsumedLocations(_, sub_type, &num_locations)) in GetLocationsForVariable() 368 uint32_t num_components = NumConsumedComponents(_, sub_type); in GetLocationsForVariable()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
D | validate_interfaces.cpp | 335 auto sub_type = type; in GetLocationsForVariable() local 347 sub_type = _.FindDef(sub_type_id); in GetLocationsForVariable() 352 if (auto error = NumConsumedLocations(_, sub_type, &num_locations)) in GetLocationsForVariable() 355 uint32_t num_components = NumConsumedComponents(_, sub_type); in GetLocationsForVariable()
|
/third_party/gstreamer/gstplugins_good/sys/osxaudio/ |
D | gstosxcoreaudiocommon.h | 54 OSType sub_type,
|
D | gstosxcoreaudiocommon.c | 313 gst_core_audio_open_device (GstCoreAudio * core_audio, OSType sub_type, in gst_core_audio_open_device() argument 323 desc.componentSubType = sub_type; in gst_core_audio_open_device()
|
/third_party/gstreamer/gstplugins_bad/sys/dshowsrcwrapper/ |
D | gstdshow.h | 84 const GUID sub_type, const GUID format_type);
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
D | default_value_objectwriter.cc | 288 util::StatusOr<const google::protobuf::Type*> sub_type = in GetMapValueType() local 290 if (!sub_type.ok()) { in GetMapValueType() 293 return sub_type.value(); in GetMapValueType()
|
/third_party/jerryscript/jerry-core/debugger/ |
D | debugger.c | 1333 uint8_t sub_type, /**< subtype of the string */ in jerry_debugger_send_string() argument 1346 if (sub_type != JERRY_DEBUGGER_NO_SUBTYPE) in jerry_debugger_send_string() 1366 if (sub_type != JERRY_DEBUGGER_NO_SUBTYPE) in jerry_debugger_send_string() 1369 message_string_p->string[string_length - 1] = sub_type; in jerry_debugger_send_string()
|