HomeSort by relevance Sort by last modified time
    Searched full:conversion (Results 176 - 200 of 3269) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 61 // the second standard conversion sequence of the user-defined
62 // conversion sequence includes an lvalue-to-rvalue conversion, the
64 int &&int2 = ConvertsTo<int&>(); // expected-error{{no viable conversion from 'ConvertsTo<int &>' to 'int'}}
65 int &&int3 = ConvertsTo<float&>(); // expected-error{{no viable conversion from 'ConvertsTo<float &>' to 'int'}}
121 int&& rri2 = X(); // expected-error{{no viable conversion from 'std_example_2::X' to 'int'}}
135 void int_rvalue_ref(int&&); // expected-note{{candidate function not viable: no known conversion from 'ConvertsTo<int &>' to 'int &&' for 1st argument}} \
136 // expected-note{{candidate function not viable: no known conversion from 'ConvertsTo<float &>' to 'int &&' for 1st argument}}
p5.cpp 30 operator B&(); // expected-warning{{conversion function converting 'PR6066::A' to its base class 'PR6066::B' will never be used}}
  /external/clang/test/CXX/special/class.inhctor/
p3.cpp 22 D2 fd2() { return 1; } // expected-error {{no viable conversion}}
30 D3 fd3() { return 1; } // expected-error {{no viable conversion}}
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 6 f<int,char*,double>("aa",3.0); // expected-warning{{conversion from string literal to 'char *' is deprecated}}
8 // expected-warning{{conversion from string literal to 'char *' is deprecated}}
  /external/clang/test/CodeGenCXX/
convert-to-fptr.cpp 34 int i = a(10); // Calls f1 via pointer returned from conversion function
37 int j = b(20); // Calls f1 via pointer returned from conversion function
derived-to-base.cpp 37 // Don't crash on a derived-to-base conversion of an r-value
  /external/clang/test/Sema/
format-strings-c90.c 11 /* TODO: Warn that the 'a' conversion specifier is a C99 feature. */
27 expected-warning{{'S' conversion specifier is not supported by ISO C}} */
format-strings-scanf.c 28 scanf("%y", i); // expected-warning{{invalid conversion specifier 'y'}}
39 scanf("%hhs", "foo"); // expected-warning{{length modifier 'hh' results in undefined behavior or no effect with 's' conversion specifier}}
40 scanf("%1$zp", &p); // expected-warning{{length modifier 'z' results in undefined behavior or no effect with 'p' conversion specifier}}
42 scanf("%#.2Lf", ld); // expected-warning{{invalid conversion specifier '#'}}
59 scanf(kFormat4, &i); // expected-warning {{length modifier 'l' results in undefined behavior or no effect with 'p' conversion specifier}}
80 scanf("%h[abc]", sp); // expected-warning{{length modifier 'h' results in undefined behavior or no effect with '[' conversion specifier}}
82 scanf("%ll[xyx]", ls); // expected-warning {{length modifier 'll' results in undefined behavior or no effect with '[' conversion specifier}}
86 /* Make sure "%a" gets parsed as a conversion specifier for float,
100 scanf("%md", sp); // expected-warning{{length modifier 'm' results in undefined behavior or no effect with 'd' conversion specifier}}
117 scanf("%Ls", "hello"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion specifier}
    [all...]
format-strings.c 95 printf("%s%lb%d","unix",10,20); // expected-warning {{invalid conversion specifier 'b'}}
98 snprintf(buf, 2, "%%%%%ld%;%d", 1, 2, 3); // expected-warning{{format specifies type 'long' but the argument has type 'int'}} expected-warning {{invalid conversion specifier ';'}}
177 printf("%@", 12); // expected-warning{{invalid conversion specifier '@'}}
184 printf("%**\n"); // expected-warning{{invalid conversion specifier '*'}}
188 printf("%W%d%Z\n", x, x, x); // expected-warning{{invalid conversion specifier 'W'}} expected-warning{{invalid conversion specifier 'Z'}}
195 printf("%qp", (void *)0); // expected-warning{{length modifier 'q' results in undefined behavior or no effect with 'p' conversion specifier}}
198 // This is fine, because there is an implicit conversion to an int.
207 printf("Format %d, is %! %f", 1, 2, 4.4); // expected-warning{{invalid conversion specifier '!'}}
221 printf("%.4p", p); // expected-warning{{precision used with 'p' conversion specifier, resulting in undefined behavior}
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-type-convert-construct.cpp 12 Rstr = R"foo(a raw string)foo"; // expected-warning{{conversion from string literal to 'char *' is deprecated}}
14 LRstr = LR"foo(a wide raw string)foo"; // expected-warning{{conversion from string literal to 'wchar_t *' is deprecated}}
derived-to-base-ambig.cpp 9 a = d; // expected-error{{ambiguous conversion from derived class 'D' to base class 'A':}} expected-error{{assigning to 'A *' from incompatible type 'D *'}}
23 o2 = f2; // expected-error{{ambiguous conversion from derived class 'F2' to base class 'Object2':}} expected-error{{assigning to 'Object2 *' from incompatible type 'F2 *'}}
  /external/icu4c/test/perf/perldriver/
Common.pl 24 $ConversionDataPath = $PerformanceDataPath."/conversion"; # Conversion Performance Data Path
  /external/clang/lib/Sema/
SemaOverload.cpp 89 /// GetConversionCategory - Retrieve the implicit conversion
90 /// category corresponding to the given implicit conversion kind.
121 /// GetConversionRank - Retrieve the implicit conversion rank
122 /// corresponding to the given implicit conversion kind.
155 /// implicit conversion.
158 "No conversion",
167 "Integral conversion",
168 "Floating conversion",
169 "Complex conversion",
170 "Floating-integral conversion",
    [all...]
  /device/moto/stingray/sensors/
nusensors.h 91 // conversion of acceleration data to SI units (m/s^2)
97 // conversion of magnetic data to uT units
108 // conversion of angular velocity(millidegrees/second) to rad/s
  /external/chromium/base/
utf_string_conversions.h 17 // indicating whether the conversion was 100% valid. In this case, it will still
19 // return strings ignore this error and just return the best conversion
42 // porting whatever module uses wstring and the conversion is being used as a
  /external/clang/test/Misc/
diag-aka-types.cpp 33 // PR9548 - "no known conversion from 'vector<string>' to 'vector<string>'"
42 void f(vector<string> v); // expected-note {{candidate function not viable: no known conversion from 'vector<string>' (aka 'std::vector<std::basic_string>') to 'vector<string>' (aka 'std::vector<versa_string>') for 1st argument}}
64 void helper(callback cb) {} // expected-note{{candidate function not viable: no known conversion from 'void (*)(struct data *)' (aka 'void (*)(ns::data *)') to 'callback' (aka 'void (*)(struct data *)') for 1st argument;}}
  /external/icu4c/common/
unistr_cnv.cpp 16 * Character conversion functions moved here from unistr.cpp
123 // Codeset conversion
181 // if it is an empty string, then use the "invariant character" conversion
189 // use the "invariant characters" conversion
285 // perform the conversion
322 // if it is an empty string, then use the "invariant character" conversion
332 // use the "invariant characters" conversion
350 // perform the conversion
374 // set up the conversion parameters
397 // perform the conversion
    [all...]
  /dalvik/tests/032-concrete-sub/src/
ConcreteSub2.java 18 * Test conversion of a concrete method to an abstract method. This class
  /dalvik/vm/
StdioConverter.h 17 * Stdout/stderr conversion thread.
  /external/chromium/chrome/common/
content_settings.h 22 // Range-checked conversion of an int to a ContentSetting, for use when reading
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/
p1-inst.cpp 11 T X<T>::value = 17; // expected-error{{no viable conversion}}
p1.cpp 9 T X0<T>::value = 0; // expected-error{{no viable conversion}}
  /external/clang/test/CodeGen/
2008-01-25-ZeroSizedAggregate.c 15 // Proper handling of zero sized fields during type conversion.
  /external/clang/test/PCH/
cxx11-enum-template.cpp 10 e = T() // expected-error {{conversion from 'double' to 'int'}}
ms-if-exists.cpp 14 int *i = t; // expected-error{{no viable conversion from 'HasFoo' to 'int *'}}

Completed in 608 milliseconds

1 2 3 4 5 6 78 91011>>