Home
last modified time | relevance | path

Searched refs:ast_ty (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/bindgen/src/codegen/
Ddyngen.rs163 let ident_str = codegen::helpers::ast_ty::cstr_expr(ident.to_string()); in push()
Dmod.rs641 helpers::ast_ty::int_expr(val) in codegen()
643 helpers::ast_ty::uint_expr(val as _) in codegen()
661 let cstr = helpers::ast_ty::cstr_expr(string); in codegen()
667 let bytes = helpers::ast_ty::byte_array_expr(bytes); in codegen()
675 match helpers::ast_ty::float_expr(ctx, f) { in codegen()
1042 let void = helpers::ast_ty::c_void(ctx); in codegen()
1951 let explicit = helpers::ast_ty::int_expr(explicit as i64); in codegen()
2358 helpers::ast_ty::arguments_from_signature(&signature, ctx); in codegen_method()
2636 helpers::ast_ty::uint_expr(v as u64) in with_variant()
2639 EnumVariantValue::Signed(v) => helpers::ast_ty::int_expr(v), in with_variant()
[all …]
Dhelpers.rs131 pub mod ast_ty { module