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

  /external/clang/test/SemaCXX/
switch.cpp 19 operator int(); // expected-note{{conversion to integral type}}
29 operator E() const; // expected-note{{conversion to enumeration type}}
89 namespace Conversion {
91 explicit operator int(); // expected-note {{conversion}}
94 switch (t) { // expected-error {{explicit conversion}}
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 895 * -1 if the conversion is not allowed.
902 enum Conversion {
906 enum Conversion conv;
999 ALOGV("illegal primitive conversion: '%s' to '%s'",
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 280 // - it is an implicit integral conversion applied to an
369 // lvalue-to-rvalue conversion (4.1 [conv.lval]),
370 // array-to-pointer conversion (4.2 [conv.array]), and
371 // function-to-pointer conversion (4.3 [conv.func]) are the
804 /// \brief Add a lambda's conversion to function pointer, as described in
810 // Add the conversion to function pointer.
835 CXXConversionDecl *Conversion
844 Conversion->setAccess(AS_public);
845 Conversion->setImplicit(true);
846 Class->addDecl(Conversion);
    [all...]
SemaInit.cpp     [all...]
SemaExpr.cpp 557 assert(!T.isNull() && "r-value conversion on typeless expression?");
648 /// sometimes suppressed. For example, the array->pointer conversion doesn't
673 // conversion rank is less than or equal to the rank of int
716 // C++ performs lvalue-to-rvalue conversion as a default argument
719 // When an lvalue-to-rvalue conversion occurs in an unevaluated
722 // has a class type, the conversion copy-initializes a temporary
723 // of type T from the glvalue and the result of the conversion
    [all...]
SemaOverload.cpp 104 /// GetConversionCategory - Retrieve the implicit conversion
105 /// category corresponding to the given implicit conversion kind.
136 /// GetConversionRank - Retrieve the implicit conversion rank
137 /// corresponding to the given implicit conversion kind.
170 /// implicit conversion.
173 "No conversion",
182 "Integral conversion",
183 "Floating conversion",
184 "Complex conversion",
185 "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)) {
551 AccessSpecifier AS = Conversion->getAccessUnsafe();
553 if (Conversion->getPrimaryTemplate()) {
562 if (Conversion->getPreviousDecl())
563 data().Conversions.replace(Conversion->getPreviousDecl(),
564 Conversion, AS);
566 data().Conversions.addDecl(getASTContext(), Conversion, AS);
    [all...]
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 

Completed in 1225 milliseconds