Lines Matching refs:ast_ty
641 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()
2640 EnumVariantValue::Unsigned(v) => helpers::ast_ty::uint_expr(v), in with_variant()
3462 use self::helpers::ast_ty::*; in try_to_rust_ty()