/external/svox/pico/tts/ |
D | svox_ssml_parser.cpp | 596 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/ |
D | macconversion.cc | 47 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/ |
D | utf_string_conversions_unittest.cc | 101 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 …]
|
D | sys_string_conversions_mac.mm | 33 CFIndex converted = CFStringGetBytes(cfstring, 41 if (converted == 0 || out_size == 0) 53 converted = CFStringGetBytes(cfstring, 61 if (converted == 0)
|
/external/icu/icu4c/source/io/ |
D | sscanf.c | 39 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 …]
|
D | uscanf.c | 40 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/ |
D | objcbridge-related-attribute.mm | 17 …; // 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/ |
D | converted.pass.cpp | 25 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()
|
D | ctor_codecvt.pass.cpp | 26 assert(myconv.converted() == 0); in main() 32 assert(myconv.converted() == 0); in main()
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest-port_test.cc | 95 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/ |
D | gtest-port_test.cc | 132 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/ |
D | gtest-port_test.cc | 132 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/ |
D | objcbridge-related-attribute.m | 22 …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 …
|
D | arc-objcbridge-related-attribute.m | 22 …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/ |
D | StreamReader.java | 184 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/ |
D | deImage.c | 100 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/ |
D | xc-translit.m4 | 29 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/ |
D | command_instance_unittest.cc | 130 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/ |
D | es_utils.py | 428 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/ |
D | m_libcbase.c | 97 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/ |
D | test128 | 29 converted 51 converted
|
D | test941 | 31 converted 59 converted
|
/external/opencv3/modules/imgproc/doc/ |
D | colors.markdown | 54 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/ |
D | dng_safe_arithmetic.h | 208 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/ |
D | v_cndmask.ll | 9 ; All nan values are converted to 0xffffffff 29 ; All nan values are converted to 0xffffffff
|