HomeSort by relevance Sort by last modified time
    Searched full:converted (Results 1 - 25 of 6909) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/lex/lex.trigraph/
p2.cpp 3 ??=define arraycheck(a,b) a??(b??) ??!??! b??(a??) // expected-warning {{trigraph converted to '#' character}} expected-warning {{trigraph converted to '[' character}} expected-warning {{trigraph converted to ']' character}} expected-warning {{trigraph converted to '|' character}} expected-warning {{trigraph converted to '|' character}} expected-warning {{trigraph converted to '[' character}} expected-warning {{trigraph converted to ']' character}}
p1.cpp 3 ??=pragma // expected-warning {{trigraph converted to '#' character}}
5 int a = '??/0'; // expected-warning {{trigraph converted to '\' character}}
7 int b = 1 ??' 0; // expected-warning {{trigraph converted to '^' character}}
9 int c ??(1]; // expected-warning {{trigraph converted to '[' character}}
11 int d [1??); // expected-warning {{trigraph converted to ']' character}}
13 int e = 1 ??! 0; // expected-warning {{trigraph converted to '|' character}}
15 void f() ??<} // expected-warning {{trigraph converted to '{' character}}
17 void g() {??> // expected-warning {{trigraph converted to '}' character}}
19 int h = ??- 0; // expected-warning {{trigraph converted to '~' character}}
  /external/webrtc/webrtc/base/
macconversion.cc 47 bool converted = false; local
58 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8));
59 if (converted) *i = static_cast<int>(sint8);
63 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16));
64 if (converted) *i = static_cast<int>(sint16);
68 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32));
69 if (converted) *i = static_cast<int>(sint32);
73 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64));
74 if (converted) *i = static_cast<int>(sint64);
78 converted = CFNumberGetValue(cfn, ntype
150 bool converted = p_convertCFNumberToInt(cfn, &asInt); local
    [all...]
  /dalvik/dx/tests/089-dex-define-object/
info.txt 2 fact be converted to a dex file. This test ensures that the conversion
3 runs without failure, though the contents of the converted file are
  /external/icu/icu4c/source/io/
sscanf.cpp 41 int32_t converted; local
44 converted = u_vsscanf(buffer, patternSpecification, ap);
47 return converted;
56 int32_t converted; local
59 converted = u_vsscanf_u(buffer, patternSpecification, ap);
62 return converted;
70 int32_t converted; local
88 converted = u_vsscanf_u(buffer, pattern, ap);
95 return converted;
103 int32_t converted; local
    [all...]
uscanf.cpp 42 int32_t converted; local
45 converted = u_vfscanf(f, patternSpecification, ap);
48 return converted;
57 int32_t converted; local
60 converted = u_vfscanf_u(f, patternSpecification, ap);
63 return converted;
71 int32_t converted; local
89 converted = u_vfscanf_u(f, pattern, ap);
96 return converted;
  /dalvik/dx/tests/040-dex-constructor/
info.txt 2 conversion runs without failure, though the contents of the converted
  /dalvik/dx/tests/132-invoke-polymorphic/
info.txt 2 invoked with invoke-virtual/invoke-virtual-range are converted to
  /external/flac/include/share/
utf8.h 16 * 0 : data was converted exactly
17 * 1 : valid data was converted approximately (using '?')
18 * 2 : input was invalid (but still converted, using '#')
19 * 3 : unknown encoding (but still converted, using '?')
  /prebuilts/go/darwin-x86/test/
phiopt.go 18 return x // ERROR "converted OpPhi to Copy$"
29 return x // ERROR "converted OpPhi to Not$"
38 return x // ERROR "converted OpPhi to Not$"
47 return x // ERROR "converted OpPhi to Copy$"
52 return a || b // ERROR "converted OpPhi to OrB$"
63 return x // ERROR "converted OpPhi to OrB$"
74 return x // ERROR "converted OpPhi to AndB$"
81 // f6or has side effects so the OpPhi should not be converted.
91 // f6and has side effects so the OpPhi should not be converted.
99 return a || b // ERROR "converted OpPhi to OrB$
    [all...]
  /prebuilts/go/linux-x86/test/
phiopt.go 18 return x // ERROR "converted OpPhi to Copy$"
29 return x // ERROR "converted OpPhi to Not$"
38 return x // ERROR "converted OpPhi to Not$"
47 return x // ERROR "converted OpPhi to Copy$"
52 return a || b // ERROR "converted OpPhi to OrB$"
63 return x // ERROR "converted OpPhi to OrB$"
74 return x // ERROR "converted OpPhi to AndB$"
81 // f6or has side effects so the OpPhi should not be converted.
91 // f6and has side effects so the OpPhi should not be converted.
99 return a || b // ERROR "converted OpPhi to OrB$
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
HtoNtoH.c 26 @param[in] Datum The 32-bit value to be converted.
27 @return Datum, converted to network byte order.
43 @param[in] Datum The 16-bit value to be converted.
44 @return Datum, converted to network byte order.
60 @param[in] Datum The 16-bit value to be converted.
61 @return Datum, converted to host byte order.
77 @param[in] Datum The 16-bit value to be converted.
78 @return Datum, converted to host byte order.
  /external/clang/test/Preprocessor/
expr_usual_conversions.c 5 #if (-42 + 0U) /* expected-warning {{left side of operator converted from negative value to unsigned: -42 to 18446744073709551574}} */ \
6 / -2 /* expected-warning {{right side of operator converted from negative value to unsigned: -2 to 18446744073709551614}} */
  /external/clang/test/SemaObjCXX/
objcbridge-related-attribute.mm 17 nsColor = newColor; // expected-error {{'CGColorRef' (aka 'CGColor *') must be explicitly converted to 'NSColor *'; use '+colorWithCGColor:' method for this conversion}}
18 NSColor *ns = newColor; // expected-error {{'CGColorRef' (aka 'CGColor *') must be explicitly converted to 'NSColor *'; use '+colorWithCGColor:' method for this conversion}}
19 return newColor; // expected-error {{'CGColorRef' (aka 'CGColor *') must be explicitly converted to 'NSColor *'; use '+colorWithCGColor:' method for this conversion}}
23 cgColor = newColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'CGColor *'); use '-CGColor' method for this conversion}}
24 CGColorRef cg = newColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'CGColor *'); use '-CGColor' method for this conversion}}
25 return newColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'CGColor *'); use '-CGColor' method for this conversion}}
  /external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.string/
converted.pass.cpp 14 // size_t converted() const;
38 assert(myconv.converted() == 0);
40 assert(myconv.converted() == 1);
42 assert(myconv.converted() == 2);
44 assert(myconv.converted() == 3);
55 assert(myconv.converted() == 0);
57 assert(myconv.converted() == 1);
59 assert(myconv.converted() == 2);
61 assert(myconv.converted() == 4);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale.convenience/conversions/conversions.string/
converted.pass.cpp 14 // size_t converted() const;
38 assert(myconv.converted() == 0);
40 assert(myconv.converted() == 1);
42 assert(myconv.converted() == 2);
44 assert(myconv.converted() == 3);
55 assert(myconv.converted() == 0);
57 assert(myconv.converted() == 1);
59 assert(myconv.converted() == 2);
61 assert(myconv.converted() == 4);
  /frameworks/base/libs/androidfw/tests/
ZipUtils_test.cpp 46 << "Year was improperly converted.";
49 << "Month was improperly converted.";
52 << "Day was improperly converted.";
55 << "Hour was improperly converted.";
58 << "Minute was improperly converted.";
61 << "Second was improperly converted.";
  /external/clang/test/Analysis/
malloc-sizeof.c 17 long *lp1 = malloc(sizeof(short)); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'long', which is incompatible with sizeof operand type 'short'}}
18 long *lp2 = malloc(5 * sizeof(double)); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'long', which is incompatible with sizeof operand type 'double'}}
24 struct A *ap3 = calloc(2, sizeof(ap1)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct A *'}}
25 struct A *ap4 = calloc(3, sizeof(struct A*)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct A *'}}
26 struct A *ap5 = calloc(4, sizeof(struct B)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct B'}}
28 struct A *ap7 = realloc(ap5, sizeof(struct B)); // expected-warning {{Result of 'realloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct B'}}
34 const char ***y = (const char ***)malloc(1 * sizeof(char *)); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'const char **', which is incompatible with sizeof operand type 'char *'}}
50 int *table = malloc(sizeof sTable); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'int', which is incompatible with sizeof operand type 'const double [10]'}}
  /external/curl/tests/data/
test128 29 converted
51 converted
  /external/libchrome/base/strings/
utf_string_conversions_unittest.cc 63 // An empty std::wstring should be converted to an empty std::string,
101 std::wstring converted; local
105 &converted));
107 EXPECT_EQ(expected, converted);
111 std::wstring converted; local
112 EXPECT_TRUE(UTF8ToWide("\00Z\t", 3, &converted));
113 ASSERT_EQ(3U, converted.length());
114 EXPECT_EQ(static_cast<wchar_t>(0), converted[0]);
115 EXPECT_EQ('Z', converted[1]);
116 EXPECT_EQ('\t', converted[2])
146 std::string converted; local
177 std::string converted; local
206 const std::string& converted = UTF16ToUTF8(multistring16); local
    [all...]
  /dalvik/dx/tests/035-dex-instance-var/
info.txt 2 conversion runs without failure, though the contents of the converted
  /dalvik/dx/tests/036-dex-static-var/
info.txt 2 conversion runs without failure, though the contents of the converted
  /dalvik/dx/tests/037-dex-static-final-var/
info.txt 2 conversion runs without failure, though the contents of the converted
  /dalvik/dx/tests/038-dex-instance-method/
info.txt 2 conversion runs without failure, though the contents of the converted
  /dalvik/dx/tests/039-dex-static-method/
info.txt 2 conversion runs without failure, though the contents of the converted

Completed in 1653 milliseconds

1 2 3 4 5 6 7 8 91011>>