HomeSort by relevance Sort by last modified time
    Searched full:converted (Results 1 - 25 of 3302) 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/chromium_org/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/chromium_org/tools/gn/
source_file.cc 48 std::string converted;
51 converted.assign(&value_[1], value_.size() - 1);
52 DCHECK(converted.size() > 2 && converted[1] == ':')
55 return base::FilePath(UTF8ToFilePath(converted));
58 converted.assign(&value_[2], value_.size() - 2);
59 ConvertPathToSystem(&converted);
60 return source_root.Append(UTF8ToFilePath(converted));
64 converted.assign(&value_[2], value_.size() - 2);
65 return source_root.Append(converted);
    [all...]
  /external/chromium_org/third_party/icu/source/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;
  /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}} */
  /external/chromium_org/ui/base/cocoa/
base_view_unittest.mm 35 gfx::Rect converted = [view_ flipNSRectToRect:convert];
36 EXPECT_EQ(converted.x(), 10);
37 EXPECT_EQ(converted.y(), 40); // Due to view being 100px tall.
38 EXPECT_EQ(converted.width(), NSWidth(convert));
39 EXPECT_EQ(converted.height(), NSHeight(convert));
42 NSRect back_again = [view_ flipRectToNSRect:converted];
  /frameworks/base/libs/androidfw/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_converter_unittest.py 80 converted = converter.convert_html('/nothing/to/convert', test_html, DUMMY_FILENAME)
84 self.verify_no_conversion_happened(converted)
97 converted = converter.convert_html(fake_dir_path, test_html, DUMMY_FILENAME)
99 self.verify_conversion_happened(converted)
100 self.verify_test_harness_paths(converter, converted[1], fake_dir_path, 1, 1)
101 self.verify_prefixed_properties(converted, [])
128 converted = converter.convert_html(fake_dir_path, test_content[1], DUMMY_FILENAME)
132 self.verify_conversion_happened(converted)
133 self.verify_test_harness_paths(converter, converted[1], fake_dir_path, 1, 1)
134 self.verify_prefixed_properties(converted, test_content[0]
    [all...]
  /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...]
  /external/chromium_org/base/strings/
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

Completed in 591 milliseconds

1 2 3 4 5 6 7 8 91011>>