HomeSort by relevance Sort by last modified time
    Searched defs:Conversion (Results 1 - 9 of 9) sorted by null

  /external/clang/test/SemaCXX/
explicit.cpp 23 namespace Conversion {
43 class Y { }; // expected-note {{candidate constructor (the implicit copy constructor) not viable: no known conversion from 'Z' to 'const Y &' for 1st argument}} \
44 expected-note {{candidate constructor (the implicit move constructor) not viable: no known conversion from 'Z' to 'Y &&' for 1st argument}} \
45 expected-note {{candidate constructor (the implicit copy constructor) not viable: no known conversion from 'Z' to 'const Y &' for 1st argument}} \
46 expected-note {{candidate constructor (the implicit move constructor) not viable: no known conversion from 'Z' to 'Y &&' for 1st argument}}
55 Y y2 = z; // expected-error {{no viable conversion from 'Z' to 'Y'}}
65 const Y& y6 = z; // expected-error {{no viable conversion from 'Z' to 'const Y'}}
75 explicit operator bool(); // expected-note {{conversion to integral type 'bool'}}
108 switch (n) {} // expected-error {{switch condition type 'NotBool' requires explicit conversion to 'bool'}} \
131 explicit operator int(); // expected-note {{conversion to integral type 'int' declared here}
    [all...]
  /libcore/luni/src/main/java/java/math/
Conversion.java 21 * Static library that provides {@link BigInteger} base conversion from/to any
24 class Conversion {
27 private Conversion() {}
  /dalvik/vm/reflect/
Reflect.cpp 892 * -1 if the conversion is not allowed.
899 enum Conversion {
903 enum Conversion conv;
996 ALOGV("illegal primitive conversion: '%s' to '%s'",
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 276 // - it is an implicit integral conversion applied to an
364 // lvalue-to-rvalue conversion (4.1 [conv.lval]),
365 // array-to-pointer conversion (4.2 [conv.array]), and
366 // function-to-pointer conversion (4.3 [conv.func]) are the
687 /// \brief Add a lambda's conversion to function pointer, as described in
693 // Add the conversion to function pointer.
721 CXXConversionDecl *Conversion
730 Conversion->setAccess(AS_public);
731 Conversion->setImplicit(true);
732 Class->addDecl(Conversion);
    [all...]
SemaInit.cpp     [all...]
SemaExpr.cpp 467 assert(!T.isNull() && "r-value conversion on typeless expression?");
543 /// sometimes suppressed. For example, the array->pointer conversion doesn't
568 // conversion rank is less than or equal to the rank of int
611 // C++ performs lvalue-to-rvalue conversion as a default argument
614 // When an lvalue-to-rvalue conversion occurs in an unevaluated
617 // has a class type, the conversion copy-initializes a temporary
618 // of type T from the glvalue and the result of the conversion
    [all...]
SemaOverload.cpp 95 /// GetConversionCategory - Retrieve the implicit conversion
96 /// category corresponding to the given implicit conversion kind.
127 /// GetConversionRank - Retrieve the implicit conversion rank
128 /// corresponding to the given implicit conversion kind.
161 /// implicit conversion.
164 "No conversion",
173 "Integral conversion",
174 "Floating conversion",
175 "Complex conversion",
176 "Floating-integral conversion",
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp 543 // Keep the list of conversion functions up-to-date.
544 if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
547 if (Conversion->getPrimaryTemplate()) {
556 if (Conversion->getPreviousDecl())
557 data().Conversions.replace(Conversion->getPreviousDecl(),
558 Conversion);
560 data().Conversions.addDecl(getASTContext(), Conversion);
    [all...]
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 

Completed in 120 milliseconds