Home | History | Annotate | Download | only in Sema

Lines Matching refs:Converted

456     // type 'array of type' is converted to an expression that has type 'pointer
463 // T" can be converted to an rvalue of type "pointer to T".
557 // converted to a prvalue.
700 // value is converted to an int; otherwise, it is converted to an
720 /// are promoted to double. All other argument types are converted by
915 /// successfully converted to the complex type.
968 // If just the complexExpr is complex, the otherExpr needs to be converted,
1013 // When both operands are complex, the shorter operand is converted to the
1018 // floating-point type, the less precise type is converted, within it's
4140 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
4429 // Pseudo-objects should be converted as soon as possible.
5449 /// \brief Return false if the two expressions can be converted to a vector,
6696 // expression is implicitly converted (C++ 4) to the
6761 // C99 6.5.16.1p2: The value of the right operand is converted to the
7588 /// \brief Returns false if the pointers are converted to a composite type,
8427 // The operands are both contextually converted to type bool.
8714 // is converted to the type of the assignment expression (above).
9892 // operand contextually converted to bool.
11088 ExprResult Converted;
11133 Converted = PerformContextualImplicitConversion(DiagLoc, E,
11135 if (Converted.isInvalid())
11136 return Converted;
11137 E = Converted.get();