Searched refs:wrap_with_expr (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/fend-core-1.4.6/src/ |
H A D | value.rs | 241 Self::BuiltInFunction(f) => f.wrap_with_expr(lazy_fn, scope), in handle_num() 256 (Self::BuiltInFunction(f), Self::Num(a)) => f.wrap_with_expr(lazy_fn_lhs(*a), scope), in handle_two_nums() 257 (Self::Num(a), Self::BuiltInFunction(f)) => f.wrap_with_expr(lazy_fn_rhs(*a), scope), in handle_two_nums()
|
H A D | ast.rs | 532 (Value::BuiltInFunction(f), Value::Num(a)) => f.wrap_with_expr( in evaluate_add() 536 (Value::Num(a), Value::BuiltInFunction(f)) => f.wrap_with_expr( in evaluate_add()
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/fend-core-1.4.6/src/value/ |
H A D | built_in_function.rs | 46 pub(crate) fn wrap_with_expr( in wrap_with_expr() method
|