Home | History | Annotate | Download | only in Sema

Lines Matching refs:Converted

418     // type 'array of type' is converted to an expression that has type 'pointer
425 // T" can be converted to an rvalue of type "pointer to T".
463 // converted to a prvalue.
573 // value is converted to an int; otherwise, it is converted to an
593 /// are promoted to double. All other argument types are converted by
757 /// successfully converted to the complex type.
810 // If just the complexExpr is complex, the otherExpr needs to be converted,
855 // When both operands are complex, the shorter operand is converted to the
860 // floating-point type, the less precise type is converted, within it's
3671 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
4824 /// \brief Return false if the two expressions can be converted to a vector,
6036 // expression is implicitly converted (C++ 4) to the
6099 // C99 6.5.16.1p2: The value of the right operand is converted to the
6807 /// \brief Returns false if the pointers are converted to a composite type,
7584 // The operands are both contextually converted to type bool.
7893 // is converted to the type of the assignment expression (above).
8935 // operand contextually converted to bool.
10095 ExprResult Converted;
10146 Converted = ConvertToIntegralOrEnumerationType(DiagLoc, E,
10199 Converted = ConvertToIntegralOrEnumerationType(DiagLoc, E,
10202 if (Converted.isInvalid())
10203 return Converted;
10204 E = Converted.take();