Home
last modified time | relevance | path

Searched refs:raw_type (Results 1 – 25 of 27) sorted by relevance

12

/external/perfetto/src/trace_processor/sqlite/
Dsqlite_utils.cc128 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/
Dhelpers.rs151 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/
Delk_fs_lower_regioning.cpp493 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/
Dbrw_lower_regioning.cpp575 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/
Dtest_utils.cc210 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/
Dtest_utils.cc210 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/
Dinput_output_analysis.py66 raw_type=o.raw_type,
198 raw_type=FunctionalTensor,
229 raw_type=o.raw_type,
Dcollect_metadata_analysis.py626 raw_type=type(o),
663 and issubclass(info.raw_type, torch.Tensor)
Dschemas.py77 raw_type: type
Dtraced_function_transforms.py155 and issubclass(meta.output_info[i].raw_type, Tensor)
/external/sdv/vsomeip/third_party/boost/optional/include/boost/optional/detail/
Dold_optional_implementation.hpp50 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/
Dstatement_def.hpp23 qi::raw_type raw; in statement()
Dexpression_def.hpp26 qi::raw_type raw; in expression()
/external/rust/android-crates-io/crates/quiche/src/h3/
Dframe.rs99 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/
Dfunction_def.hpp23 qi::raw_type raw; in function()
Dstatement_def.hpp23 qi::raw_type raw; in statement()
Dexpression_def.hpp26 qi::raw_type raw; in expression()
/external/sdv/vsomeip/third_party/boost/spirit/example/qi/compiler_tutorial/conjure1/
Dfunction_def.hpp23 qi::raw_type raw; in function()
Dstatement_def.hpp23 qi::raw_type raw; in statement()
Dexpression_def.hpp26 qi::raw_type raw; in expression()
/external/sdv/vsomeip/third_party/boost/spirit/example/qi/compiler_tutorial/calc8/
Dstatement_def.hpp23 qi::raw_type raw; in statement()
Dexpression_def.hpp26 qi::raw_type raw; in expression()
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/qi/directive/
Draw.hpp41 using spirit::raw_type;
/external/linux-kselftest/tools/testing/selftests/vm/
Duserfaultfd.c1817 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/
Dcommon_terminals.hpp73 ( raw, raw_type )

12