/external/perfetto/src/trace_processor/sqlite/ |
D | sqlite_utils.cc | 128 const char* raw_type = in GetColumnsForTable() local 130 if (!name || !raw_type || !*name) { in GetColumnsForTable() 136 if (base::CaseInsensitiveEqual(raw_type, "STRING") || in GetColumnsForTable() 137 base::CaseInsensitiveEqual(raw_type, "TEXT")) { in GetColumnsForTable() 139 } else if (base::CaseInsensitiveEqual(raw_type, "DOUBLE")) { in GetColumnsForTable() 141 } else if (base::CaseInsensitiveEqual(raw_type, "BIG INT") || in GetColumnsForTable() 142 base::CaseInsensitiveEqual(raw_type, "BIGINT") || in GetColumnsForTable() 143 base::CaseInsensitiveEqual(raw_type, "UNSIGNED INT") || in GetColumnsForTable() 144 base::CaseInsensitiveEqual(raw_type, "INT") || in GetColumnsForTable() 145 base::CaseInsensitiveEqual(raw_type, "BOOLEAN") || in GetColumnsForTable() [all …]
|
/external/rust/android-crates-io/crates/bindgen/codegen/ |
D | helpers.rs | 151 pub(crate) fn raw_type(ctx: &BindgenContext, name: &str) -> syn::Type { in raw_type() function 177 IntKind::Char { .. } => raw_type(ctx, "c_char"), in int_kind_rust_type() 178 IntKind::SChar => raw_type(ctx, "c_schar"), in int_kind_rust_type() 179 IntKind::UChar => raw_type(ctx, "c_uchar"), in int_kind_rust_type() 180 IntKind::Short => raw_type(ctx, "c_short"), in int_kind_rust_type() 181 IntKind::UShort => raw_type(ctx, "c_ushort"), in int_kind_rust_type() 182 IntKind::Int => raw_type(ctx, "c_int"), in int_kind_rust_type() 183 IntKind::UInt => raw_type(ctx, "c_uint"), in int_kind_rust_type() 184 IntKind::Long => raw_type(ctx, "c_long"), in int_kind_rust_type() 185 IntKind::ULong => raw_type(ctx, "c_ulong"), in int_kind_rust_type() [all …]
|
/external/mesa3d/src/intel/compiler/elk/ |
D | elk_fs_lower_regioning.cpp | 493 const elk_reg_type raw_type = elk_int_type(MIN2(type_sz(tmp.type), 4), in lower_src_region() local 495 const unsigned n = type_sz(tmp.type) / type_sz(raw_type); in lower_src_region() 501 ibld.MOV(subscript(tmp, raw_type, j), subscript(raw_src, raw_type, j)); in lower_src_region() 542 const elk_reg_type raw_type = elk_int_type(MIN2(type_sz(tmp.type), 4), in lower_dst_region() local 544 const unsigned n = type_sz(tmp.type) / type_sz(raw_type); in lower_dst_region() 554 ibld.MOV(subscript(tmp, raw_type, j), in lower_dst_region() 555 subscript(inst->dst, raw_type, j)); in lower_dst_region() 559 ibld.at(block, inst->next).MOV(subscript(inst->dst, raw_type, j), in lower_dst_region() 560 subscript(tmp, raw_type, j)); in lower_dst_region() 583 const elk_reg_type raw_type = required_exec_type(v->devinfo, inst); in lower_exec_type() local [all …]
|
/external/mesa3d/src/intel/compiler/ |
D | brw_lower_regioning.cpp | 575 const brw_reg_type raw_type = brw_int_type(MIN2(brw_type_size_bytes(tmp.type), 4), in lower_src_region() local 577 const unsigned n = brw_type_size_bytes(tmp.type) / brw_type_size_bytes(raw_type); in lower_src_region() 583 fs_inst *jnst = ibld.MOV(subscript(tmp, raw_type, j), in lower_src_region() 584 subscript(raw_src, raw_type, j)); in lower_src_region() 633 const brw_reg_type raw_type = in lower_dst_region() local 637 brw_type_size_bytes(tmp.type) / brw_type_size_bytes(raw_type); in lower_dst_region() 647 ibld.MOV(subscript(tmp, raw_type, j), in lower_dst_region() 648 subscript(inst->dst, raw_type, j)); in lower_dst_region() 652 fs_inst *jnst = ibld.at(block, inst->next).MOV(subscript(inst->dst, raw_type, j), in lower_dst_region() 653 subscript(tmp, raw_type, j)); in lower_dst_region() [all …]
|
/external/cronet/stable/net/third_party/quiche/src/quiche/http2/adapter/ |
D | test_utils.cc | 210 uint8_t raw_type; in MatchAndExplainOneFrame() local 211 if (!reader->ReadUInt8(&raw_type)) { in MatchAndExplainOneFrame() 217 if (raw_type != static_cast<uint8_t>(expected_type)) { in MatchAndExplainOneFrame() 218 *listener << "; actual type: " << FrameTypeToString(raw_type) in MatchAndExplainOneFrame()
|
/external/cronet/tot/net/third_party/quiche/src/quiche/http2/adapter/ |
D | test_utils.cc | 210 uint8_t raw_type; in MatchAndExplainOneFrame() local 211 if (!reader->ReadUInt8(&raw_type)) { in MatchAndExplainOneFrame() 217 if (raw_type != static_cast<uint8_t>(expected_type)) { in MatchAndExplainOneFrame() 218 *listener << "; actual type: " << FrameTypeToString(raw_type) in MatchAndExplainOneFrame()
|
/external/pytorch/torch/_functorch/_aot_autograd/ |
D | input_output_analysis.py | 66 raw_type=o.raw_type, 198 raw_type=FunctionalTensor, 229 raw_type=o.raw_type,
|
D | collect_metadata_analysis.py | 626 raw_type=type(o), 663 and issubclass(info.raw_type, torch.Tensor)
|
D | schemas.py | 77 raw_type: type
|
D | traced_function_transforms.py | 155 and issubclass(meta.output_info[i].raw_type, Tensor)
|
/external/sdv/vsomeip/third_party/boost/optional/include/boost/optional/detail/ |
D | old_optional_implementation.hpp | 50 typedef BOOST_DEDUCED_TYPENAME remove_reference<T>::type raw_type ; typedef 52 typedef raw_type& reference_const_type ; 53 typedef raw_type& reference_type ; 55 typedef BOOST_DEDUCED_TYPENAME remove_const<raw_type>::type&& rval_reference_type ; 56 typedef raw_type& reference_type_of_temporary_wrapper; 59 typedef raw_type* pointer_const_type ; 60 typedef raw_type* pointer_type ; 61 typedef raw_type& argument_type ;
|
/external/sdv/vsomeip/third_party/boost/spirit/example/qi/compiler_tutorial/calc7/ |
D | statement_def.hpp | 23 qi::raw_type raw; in statement()
|
D | expression_def.hpp | 26 qi::raw_type raw; in expression()
|
/external/rust/android-crates-io/crates/quiche/src/h3/ |
D | frame.rs | 99 raw_type: u64, 143 raw_type: frame_type, in from_bytes() 422 raw_type, in to_qlog() 425 frame_type_value: *raw_type, in to_qlog() 505 Frame::Unknown { raw_type, .. } => { in fmt() 1280 raw_type: 255, in unknown_type()
|
/external/sdv/vsomeip/third_party/boost/spirit/example/qi/compiler_tutorial/mini_c/ |
D | function_def.hpp | 23 qi::raw_type raw; in function()
|
D | statement_def.hpp | 23 qi::raw_type raw; in statement()
|
D | expression_def.hpp | 26 qi::raw_type raw; in expression()
|
/external/sdv/vsomeip/third_party/boost/spirit/example/qi/compiler_tutorial/conjure1/ |
D | function_def.hpp | 23 qi::raw_type raw; in function()
|
D | statement_def.hpp | 23 qi::raw_type raw; in statement()
|
D | expression_def.hpp | 26 qi::raw_type raw; in expression()
|
/external/sdv/vsomeip/third_party/boost/spirit/example/qi/compiler_tutorial/calc8/ |
D | statement_def.hpp | 23 qi::raw_type raw; in statement()
|
D | expression_def.hpp | 26 qi::raw_type raw; in expression()
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/qi/directive/ |
D | raw.hpp | 41 using spirit::raw_type;
|
/external/linux-kselftest/tools/testing/selftests/vm/ |
D | userfaultfd.c | 1817 static void parse_test_type_arg(const char *raw_type) in parse_test_type_arg() argument 1819 char *buf = strdup(raw_type); in parse_test_type_arg() 1841 err("failed to parse test type argument: '%s'", raw_type); in parse_test_type_arg() 1844 err("Unsupported test: %s", raw_type); in parse_test_type_arg()
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/ |
D | common_terminals.hpp | 73 ( raw, raw_type )
|