Home
last modified time | relevance | path

Searched refs:converted (Results 1 – 25 of 354) sorted by relevance

12345678910>>...15

/external/svox/pico/tts/
Dsvox_ssml_parser.cpp596 char* converted = NULL; in convertToSvoxPitch() local
599 converted = new char[4]; in convertToSvoxPitch()
600 if (!converted) in convertToSvoxPitch()
605 strcpy(converted, SSML_PITCH_XLOW); in convertToSvoxPitch()
609 converted = new char[4]; in convertToSvoxPitch()
610 if (!converted) in convertToSvoxPitch()
615 strcpy(converted, SSML_PITCH_LOW); in convertToSvoxPitch()
619 converted = new char[4]; in convertToSvoxPitch()
620 if (!converted) in convertToSvoxPitch()
625 strcpy(converted, SSML_PITCH_MEDIUM); in convertToSvoxPitch()
[all …]
/external/webrtc/webrtc/base/
Dmacconversion.cc47 bool converted = false; in p_convertCFNumberToInt() local
58 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8)); in p_convertCFNumberToInt()
59 if (converted) *i = static_cast<int>(sint8); in p_convertCFNumberToInt()
63 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16)); in p_convertCFNumberToInt()
64 if (converted) *i = static_cast<int>(sint16); in p_convertCFNumberToInt()
68 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32)); in p_convertCFNumberToInt()
69 if (converted) *i = static_cast<int>(sint32); in p_convertCFNumberToInt()
73 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64)); in p_convertCFNumberToInt()
74 if (converted) *i = static_cast<int>(sint64); in p_convertCFNumberToInt()
78 converted = CFNumberGetValue(cfn, ntype, in p_convertCFNumberToInt()
[all …]
/external/libchrome/base/strings/
Dutf_string_conversions_unittest.cc101 std::wstring converted; in TEST() local
105 &converted)); in TEST()
107 EXPECT_EQ(expected, converted); in TEST()
111 std::wstring converted; in TEST() local
112 EXPECT_TRUE(UTF8ToWide("\00Z\t", 3, &converted)); in TEST()
113 ASSERT_EQ(3U, converted.length()); in TEST()
114 EXPECT_EQ(static_cast<wchar_t>(0), converted[0]); in TEST()
115 EXPECT_EQ('Z', converted[1]); in TEST()
116 EXPECT_EQ('\t', converted[2]); in TEST()
119 EXPECT_TRUE(UTF8ToWide("B", 1, &converted)); in TEST()
[all …]
Dsys_string_conversions_mac.mm33 CFIndex converted = CFStringGetBytes(cfstring,
41 if (converted == 0 || out_size == 0)
53 converted = CFStringGetBytes(cfstring,
61 if (converted == 0)
/external/icu/icu4c/source/io/
Dsscanf.c39 int32_t converted; in u_sscanf() local
42 converted = u_vsscanf(buffer, patternSpecification, ap); in u_sscanf()
45 return converted; in u_sscanf()
54 int32_t converted; in u_sscanf_u() local
57 converted = u_vsscanf_u(buffer, patternSpecification, ap); in u_sscanf_u()
60 return converted; in u_sscanf_u()
68 int32_t converted; in u_vsscanf() local
86 converted = u_vsscanf_u(buffer, pattern, ap); in u_vsscanf()
93 return converted; in u_vsscanf()
101 int32_t converted; in u_vsscanf_u() local
[all …]
Duscanf.c40 int32_t converted; in u_fscanf() local
43 converted = u_vfscanf(f, patternSpecification, ap); in u_fscanf()
46 return converted; in u_fscanf()
55 int32_t converted; in u_fscanf_u() local
58 converted = u_vfscanf_u(f, patternSpecification, ap); in u_fscanf_u()
61 return converted; in u_fscanf_u()
69 int32_t converted; in u_vfscanf() local
87 converted = u_vfscanf_u(f, pattern, ap); in u_vfscanf()
94 return converted; in u_vfscanf()
/external/clang/test/SemaObjCXX/
Dobjcbridge-related-attribute.mm17 …; // expected-error {{'CGColorRef' (aka 'CGColor *') must be explicitly converted to 'NSColor *'; …
18 …; // expected-error {{'CGColorRef' (aka 'CGColor *') must be explicitly converted to 'NSColor *'; …
19 …return newColor; // expected-error {{'CGColorRef' (aka 'CGColor *') must be explicitly converted t…
23 …cgColor = newColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (…
24 …CGColorRef cg = newColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColor…
25 …return newColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka…
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.string/
Dconverted.pass.cpp25 assert(myconv.converted() == 0); in main()
27 assert(myconv.converted() == 1); in main()
29 assert(myconv.converted() == 2); in main()
31 assert(myconv.converted() == 4); in main()
Dctor_codecvt.pass.cpp26 assert(myconv.converted() == 0); in main()
32 assert(myconv.converted() == 0); in main()
/external/google-breakpad/src/testing/gtest/test/
Dgtest-port_test.cc95 explicit Castable(bool* converted) : converted_(converted) {} in Castable() argument
106 bool converted = false; in TEST() local
107 Castable castable(&converted); in TEST()
109 EXPECT_TRUE(converted); in TEST()
114 explicit ConstCastable(bool* converted) : converted_(converted) {} in ConstCastable() argument
125 bool converted = false; in TEST() local
126 const ConstCastable const_castable(&converted); in TEST()
128 EXPECT_TRUE(converted); in TEST()
133 ConstAndNonConstCastable(bool* converted, bool* const_converted) in ConstAndNonConstCastable() argument
134 : converted_(converted), const_converted_(const_converted) {} in ConstAndNonConstCastable()
[all …]
/external/gtest/test/
Dgtest-port_test.cc132 explicit Castable(bool* converted) : converted_(converted) {} in Castable() argument
143 bool converted = false; in TEST() local
144 Castable castable(&converted); in TEST()
146 EXPECT_TRUE(converted); in TEST()
151 explicit ConstCastable(bool* converted) : converted_(converted) {} in ConstCastable() argument
162 bool converted = false; in TEST() local
163 const ConstCastable const_castable(&converted); in TEST()
165 EXPECT_TRUE(converted); in TEST()
170 ConstAndNonConstCastable(bool* converted, bool* const_converted) in ConstAndNonConstCastable() argument
171 : converted_(converted), const_converted_(const_converted) {} in ConstAndNonConstCastable()
[all …]
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
Dgtest-port_test.cc132 explicit Castable(bool* converted) : converted_(converted) {} in Castable() argument
143 bool converted = false; in TEST() local
144 Castable castable(&converted); in TEST()
146 EXPECT_TRUE(converted); in TEST()
151 explicit ConstCastable(bool* converted) : converted_(converted) {} in ConstCastable() argument
162 bool converted = false; in TEST() local
163 const ConstCastable const_castable(&converted); in TEST()
165 EXPECT_TRUE(converted); in TEST()
170 ConstAndNonConstCastable(bool* converted, bool* const_converted) in ConstAndNonConstCastable() argument
171 : converted_(converted), const_converted_(const_converted) {} in ConstAndNonConstCastable()
[all …]
/external/clang/test/SemaObjC/
Dobjcbridge-related-attribute.m22 …pected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *'; …
23 …pected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *'; …
24 …pected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *'; …
34 …eld.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' …
35 …return textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to …
Darc-objcbridge-related-attribute.m22 …pected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *'; …
23 …pected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *__s…
24 …pected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *'; …
34 …eld.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' …
35 …return textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to …
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
DStreamReader.java184 int converted = this.stream.read(data); in update() local
185 if (converted > 0) { in update()
192 checkPrintable(data, 0, converted); in update()
193 this.buffer = new StringBuilder(buffer.length() + converted).append(buffer) in update()
194 .append(data, 0, converted).toString(); in update()
/external/deqp/framework/delibs/deimage/
DdeImage.c100 deImage* converted = deImage_create(width, height, format); in deImage_convertFormat() local
101 if (!converted) in deImage_convertFormat()
105 memcpy(converted->pixels, image->pixels, width * height * deImageFormat_getBytesPerPixel(format)); in deImage_convertFormat()
111 deImage_setPixel(converted, x, y, deImage_getPixel(image, x, y)); in deImage_convertFormat()
114 return converted; in deImage_convertFormat()
/external/curl/m4/
Dxc-translit.m429 dnl converted to the underscore '_' character.
54 dnl converted to the underscore '_' character.
82 dnl converted to the underscore '_' character and alnum
83 dnl characters are converted to uppercase.
113 dnl converted to the underscore '_' character and alnum
114 dnl characters are converted to uppercase.
/external/libweave/src/commands/
Dcommand_instance_unittest.cc130 auto converted = instance->ToJson(); in TEST() local
133 *json, *converted); in TEST()
157 auto converted = instance->ToJson(); in TEST() local
160 *json, *converted); in TEST()
/external/autotest/client/common_lib/cros/graphite/
Des_utils.py428 converted = {}
431 converted[key] = value[0] if len(value)==1 else value
433 converted = hit['_source'].copy()
434 output.hits.append(converted)
/external/valgrind/coregrind/
Dm_libcbase.c97 Bool neg = False, converted = False; in VG_() local
109 converted = True; // Ok, we've actually converted a digit. in VG_()
114 if (!converted) str = str0; // If nothing converted, endptr points to in VG_()
123 Bool converted = False; in VG_() local
135 converted = True; // Ok, we've actually converted a digit. in VG_()
140 if (!converted) str = str0; // If nothing converted, endptr points to in VG_()
149 Bool neg = False, converted = False; in VG_() local
169 converted = True; // Ok, we've actually converted a digit. in VG_()
174 if (!converted) str = str0; // If nothing converted, endptr points to in VG_()
183 Bool converted = False; in VG_() local
[all …]
/external/curl/tests/data/
Dtest12829 converted
51 converted
Dtest94131 converted
59 converted
/external/opencv3/modules/imgproc/doc/
Dcolors.markdown54 In case of 8-bit and 16-bit images, R, G, and B are converted to the floating-point format and
63 The values are then converted to the destination data type:
73 In case of 8-bit and 16-bit images, R, G, and B are converted to the floating-point format and
87 The values are then converted to the destination data type:
97 In case of 8-bit and 16-bit images, R, G, and B are converted to the floating-point format and
112 are then converted to the destination data type:
122 In case of 8-bit and 16-bit images, R, G, and B are converted to the floating-point format and
134 The values are then converted to the destination data type:
/external/dng_sdk/source/
Ddng_safe_arithmetic.h208 const TDest converted = static_cast<TDest>(src); in ConvertUnsigned() local
212 if (static_cast<TSrc>(converted) != src) { in ConvertUnsigned()
216 *dest = converted; in ConvertUnsigned()
/external/llvm/test/CodeGen/AMDGPU/
Dv_cndmask.ll9 ; All nan values are converted to 0xffffffff
29 ; All nan values are converted to 0xffffffff

12345678910>>...15