Home
last modified time | relevance | path

Searched refs:rhs_type (Results 1 – 13 of 13) sorted by relevance

/third_party/json/doc/mkdocs/docs/api/basic_json/
Doperator_eq.md74 const auto rhs_type rhs.type();
75 if (lhs_type == rhs_type)
/third_party/skia/third_party/externals/tint/src/resolver/
Dresolver_test.cc1502 auto* rhs_type = params.create_rhs_type(*this); in TEST_P() local
1507 << FriendlyName(rhs_type); in TEST_P()
1511 Global("rhs", rhs_type, ast::StorageClass::kPrivate); in TEST_P()
1542 auto* rhs_type = create_rhs_type(*this); in TEST_P() local
1546 << FriendlyName(rhs_type); in TEST_P()
1549 << " " << FriendlyName(rhs_type); in TEST_P()
1553 Global("rhs", rhs_type, ast::StorageClass::kPrivate); in TEST_P()
1598 auto* rhs_type = rhs_create_type_func(*this); in TEST_P() local
1601 ss << FriendlyName(lhs_type) << " " << op << " " << FriendlyName(rhs_type); in TEST_P()
1605 Global("rhs", rhs_type, ast::StorageClass::kPrivate); in TEST_P()
[all …]
Dtype_constructor_validation_test.cc237 builder::ast_type_func_ptr rhs_type; member
305 auto* rhs_type = params.rhs_type(*this); in TEST_P() local
310 << FriendlyName(rhs_type) << "(<rhs value expr>))"; in TEST_P()
313 auto* arg = Construct(rhs_type, rhs_value_expr); in TEST_P()
381 if (v.lhs_type == lhs_params.ast && v.rhs_type == rhs_params.ast && in TEST_P()
394 auto* rhs_type = rhs_params.ast(*this); in TEST_P() local
399 << FriendlyName(rhs_type) << "(<rhs value expr>))"; in TEST_P()
403 Construct(lhs_type2, Construct(rhs_type, rhs_value_expr))); in TEST_P()
Dresolver.h278 const sem::Type* rhs_type);
/third_party/json/include/nlohmann/
Djson.hpp6353 const auto rhs_type = rhs.type(); in operator ==() local
6355 if (lhs_type == rhs_type) in operator ==()
6391 else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_float) in operator ==()
6395 else if (lhs_type == value_t::number_float && rhs_type == value_t::number_integer) in operator ==()
6399 else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_float) in operator ==()
6403 else if (lhs_type == value_t::number_float && rhs_type == value_t::number_unsigned) in operator ==()
6407 else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_integer) in operator ==()
6411 else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_unsigned) in operator ==()
6518 const auto rhs_type = rhs.type(); in operator <() local
6520 if (lhs_type == rhs_type) in operator <()
[all …]
/third_party/skia/third_party/externals/tint/src/writer/spirv/
Dbuilder.cc1988 auto* rhs_type = TypeOf(expr->rhs)->UnwrapRef(); in GenerateBinaryExpression() local
1992 rhs_type->is_float_matrix()) { in GenerateBinaryExpression()
1994 auto* rhs_mat = rhs_type->As<sem::Matrix>(); in GenerateBinaryExpression()
2012 ((lhs_type->is_float_scalar() && rhs_type->is_float_vector()) || in GenerateBinaryExpression()
2013 (lhs_type->is_float_vector() && rhs_type->is_float_scalar())); in GenerateBinaryExpression()
2016 if (lhs_type->Is<sem::Vector>() && rhs_type->is_numeric_scalar()) { in GenerateBinaryExpression()
2022 rhs_type = lhs_type; in GenerateBinaryExpression()
2024 } else if (lhs_type->is_numeric_scalar() && rhs_type->Is<sem::Vector>()) { in GenerateBinaryExpression()
2025 uint32_t splat_vector_id = GenerateSplat(lhs_id, rhs_type); in GenerateBinaryExpression()
2030 lhs_type = rhs_type; in GenerateBinaryExpression()
[all …]
/third_party/skia/third_party/externals/tint/src/writer/msl/
Dgenerator_impl.cc434 auto* rhs_type = TypeOf(expr->rhs)->UnwrapRef(); in EmitBinary() local
454 rhs_type->is_signed_scalar_or_vector()) { in EmitBinary()
460 : (rhs_type->Is<sem::Vector>() ? rhs_type : lhs_type); in EmitBinary()
478 ScopedBitCast rhs_uint_cast(this, out, rhs_type, in EmitBinary()
/third_party/json/doc/mkdocs/docs/features/types/
Dnumber_handling.md207 const auto rhs_type rhs.type();
208 if (lhs_type == rhs_type)
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
Dgenerator_impl.cc649 auto* rhs_type = TypeOf(expr->rhs)->UnwrapRef(); in EmitBinary() local
653 ((lhs_type->Is<sem::Vector>() && rhs_type->Is<sem::Matrix>()) || in EmitBinary()
654 (lhs_type->Is<sem::Matrix>() && rhs_type->Is<sem::Vector>()) || in EmitBinary()
655 (lhs_type->Is<sem::Matrix>() && rhs_type->Is<sem::Matrix>()))) { in EmitBinary()
/third_party/json/single_include/nlohmann/
Djson.hpp23754 const auto rhs_type = rhs.type(); in operator ==() local
23756 if (lhs_type == rhs_type) in operator ==()
23792 else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_float) in operator ==()
23796 else if (lhs_type == value_t::number_float && rhs_type == value_t::number_integer) in operator ==()
23800 else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_float) in operator ==()
23804 else if (lhs_type == value_t::number_float && rhs_type == value_t::number_unsigned) in operator ==()
23808 else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_integer) in operator ==()
23812 else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_unsigned) in operator ==()
23919 const auto rhs_type = rhs.type(); in operator <() local
23921 if (lhs_type == rhs_type) in operator <()
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dast_function.cpp1528 const glsl_type *rhs_type = in emit_inline_vector_constructor() local
1532 ir_rvalue *rhs = new(ctx) ir_constant(rhs_type, &data); in emit_inline_vector_constructor()
/third_party/libabigail/src/
Dabg-ir.cc13938 const type_base& rhs_type);
22291 const type_base& rhs_type) in maybe_propagate_canonical_type() argument
22301 if (!rhs_type.get_canonical_type()) in maybe_propagate_canonical_type()
22302 if (env.priv_->propagate_ct(lhs_type, rhs_type)) in maybe_propagate_canonical_type()
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_glsl.cpp15648 auto &rhs_type = get<SPIRType>(rhs_type_id); in emit_copy_logical_type() local
15660 emit_copy_logical_type(lhs_id, lhs_type.parent_type, rhs_id, rhs_type.parent_type, chain); in emit_copy_logical_type()
15670 … emit_copy_logical_type(lhs_id, lhs_type.member_types[i], rhs_id, rhs_type.member_types[i], chain); in emit_copy_logical_type()