Home | History | Annotate | Download | only in Sema

Lines Matching refs:Converted

326     // type 'array of type' is converted to an expression that has type 'pointer
333 // T" can be converted to an rvalue of type "pointer to T".
371 // converted to a prvalue.
468 // value is converted to an int; otherwise, it is converted to an
488 /// double. All other argument types are converted by UsualUnaryConversions().
630 /// successfully converted to the complex type.
683 // If just the complexExpr is complex, the otherExpr needs to be converted,
728 // When both operands are complex, the shorter operand is converted to the
733 // floating-point type, the less precise type is converted, within it's
3354 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
4499 /// \brief Return false if the two expressions can be converted to a vector,
5715 // expression is implicitly converted (C++ 4) to the
5778 // C99 6.5.16.1p2: The value of the right operand is converted to the
6506 /// \brief Returns false if the pointers are converted to a composite type,
7112 // The operands are both contextually converted to type bool.
7377 // is converted to the type of the assignment expression (above).
8380 // operand contextually converted to bool.
9454 ExprResult Converted;
9456 Converted = ConvertToIntegralOrEnumerationType(
9469 Converted = ConvertToIntegralOrEnumerationType(
9473 if (Converted.isInvalid())
9474 return Converted;
9475 E = Converted.take();