HomeSort by relevance Sort by last modified time
    Searched full:converted (Results 1 - 25 of 2167) 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}}
  /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/chromium/third_party/libjingle/source/talk/base/
macconversion.cc 64 bool converted = false; local
75 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8));
76 if (converted) *i = static_cast<int>(sint8);
80 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16));
81 if (converted) *i = static_cast<int>(sint16);
85 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32));
86 if (converted) *i = static_cast<int>(sint32);
90 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64));
91 if (converted) *i = static_cast<int>(sint64);
95 converted = CFNumberGetValue(cfn, ntype
167 bool converted = p_convertCFNumberToInt(cfn, &asInt); local
    [all...]
  /external/icu4c/io/
sscanf.c 39 int32_t converted; local
42 converted = u_vsscanf(buffer, patternSpecification, ap);
45 return converted;
54 int32_t converted; local
57 converted = u_vsscanf_u(buffer, patternSpecification, ap);
60 return converted;
68 int32_t converted; local
86 converted = u_vsscanf_u(buffer, pattern, ap);
93 return converted;
101 int32_t converted; local
    [all...]
uscanf.c 40 int32_t converted; local
43 converted = u_vfscanf(f, patternSpecification, ap);
46 return converted;
55 int32_t converted; local
58 converted = u_vfscanf_u(f, patternSpecification, ap);
61 return converted;
69 int32_t converted; local
87 converted = u_vfscanf_u(f, pattern, ap);
94 return converted;
  /dalvik/dx/tests/040-dex-constructor/
info.txt 2 conversion runs without failure, though the contents of the converted
  /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}} */
  /frameworks/native/libs/utils/tests/
ZipFileRO_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/svox/pico/tts/
svox_ssml_parser.cpp 596 char* converted = NULL; local
599 converted = new char[4];
600 if (!converted)
605 strcpy(converted, SSML_PITCH_XLOW);
609 converted = new char[4];
610 if (!converted)
615 strcpy(converted, SSML_PITCH_LOW);
619 converted = new char[4];
620 if (!converted)
625 strcpy(converted, SSML_PITCH_MEDIUM)
666 char* converted = NULL; local
736 char* converted = NULL; local
816 char* converted = NULL; local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
base_view_unittest.mm 34 gfx::Rect converted = [view_ flipNSRectToRect:convert];
35 EXPECT_EQ(converted.x(), 10);
36 EXPECT_EQ(converted.y(), 40); // Due to view being 100px tall.
37 EXPECT_EQ(converted.width(), convert.size.width);
38 EXPECT_EQ(converted.height(), convert.size.height);
41 NSRect back_again = [view_ flipRectToNSRect: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/chromium/base/
utf_string_conversions_unittest.cc 60 // An empty std::wstring should be converted to an empty std::string,
98 std::wstring converted; local
102 &converted));
104 EXPECT_EQ(expected, converted);
108 std::wstring converted; local
109 EXPECT_TRUE(UTF8ToWide("\00Z\t", 3, &converted));
110 ASSERT_EQ(3U, converted.length());
111 EXPECT_EQ(static_cast<wchar_t>(0), converted[0]);
112 EXPECT_EQ('Z', converted[1]);
113 EXPECT_EQ('\t', converted[2])
143 std::string converted; local
176 std::string converted; local
206 const std::string& converted = WideToUTF8(wmultistring); 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
  /dalvik/dx/tests/041-dex-abstract-method/
info.txt 2 conversion runs without failure, though the contents of the converted
  /dalvik/dx/tests/042-dex-ignore-result/
info.txt 2 conversion runs without failure, though the contents of the converted
  /dalvik/dx/tests/043-dex-two-classes/
info.txt 2 conversion runs without failure, though the contents of the converted
  /dalvik/dx/tests/044-dex-math-ops/
info.txt 2 simple uses of all the math ops end up getting converted reasonably.
  /dalvik/dx/tests/045-dex-switch-ops/
info.txt 2 both kinds of switch op get converted reasonably.
  /dalvik/dx/tests/046-dex-exceptions/
info.txt 2 a couple simple cases of exception handling get converted reasonably.
  /dalvik/dx/tests/048-dex-new-array/
info.txt 2 simple array construction expressions get converted reasonably.

Completed in 2792 milliseconds

1 2 3 4 5 6 7 8 91011>>