/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/chromium/third_party/libjingle/source/talk/base/ |
D | macconversion.cc | 64 bool converted = false; in p_convertCFNumberToInt() local 75 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8)); in p_convertCFNumberToInt() 76 if (converted) *i = static_cast<int>(sint8); in p_convertCFNumberToInt() 80 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16)); in p_convertCFNumberToInt() 81 if (converted) *i = static_cast<int>(sint16); in p_convertCFNumberToInt() 85 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32)); in p_convertCFNumberToInt() 86 if (converted) *i = static_cast<int>(sint32); in p_convertCFNumberToInt() 90 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64)); in p_convertCFNumberToInt() 91 if (converted) *i = static_cast<int>(sint64); in p_convertCFNumberToInt() 95 converted = CFNumberGetValue(cfn, ntype, in p_convertCFNumberToInt() [all …]
|
/external/chromium/base/ |
D | utf_string_conversions_unittest.cc | 98 std::wstring converted; in TEST() local 102 &converted)); in TEST() 104 EXPECT_EQ(expected, converted); in TEST() 108 std::wstring converted; in TEST() local 109 EXPECT_TRUE(UTF8ToWide("\00Z\t", 3, &converted)); in TEST() 110 ASSERT_EQ(3U, converted.length()); in TEST() 111 EXPECT_EQ(static_cast<wchar_t>(0), converted[0]); in TEST() 112 EXPECT_EQ('Z', converted[1]); in TEST() 113 EXPECT_EQ('\t', converted[2]); in TEST() 116 EXPECT_TRUE(UTF8ToWide("B", 1, &converted)); in TEST() [all …]
|
D | sys_string_conversions_mac.mm | 32 CFIndex converted = CFStringGetBytes(cfstring, 40 if (converted == 0 || out_size == 0) 52 converted = CFStringGetBytes(cfstring, 60 if (converted == 0)
|
/external/icu4c/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/chromium/chrome/browser/ui/cocoa/ |
D | 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/chromium/testing/gtest/test/ |
D | gtest-port_test.cc | 93 Castable(bool* converted) : converted_(converted) {} in Castable() argument 104 bool converted = false; in TEST() local 105 Castable castable(&converted); in TEST() 107 EXPECT_TRUE(converted); in TEST() 112 ConstCastable(bool* converted) : converted_(converted) {} in ConstCastable() argument 123 bool converted = false; in TEST() local 124 const ConstCastable const_castable(&converted); in TEST() 126 EXPECT_TRUE(converted); in TEST() 131 ConstAndNonConstCastable(bool* converted, bool* const_converted) in ConstAndNonConstCastable() argument 132 : converted_(converted), const_converted_(const_converted) {} in ConstAndNonConstCastable() [all …]
|
/external/libvpx/libvpx/third_party/googletest/src/test/ |
D | gtest-port_test.cc | 95 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 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 | 95 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 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/chromium/chrome/browser/autofill/ |
D | credit_card.cc | 124 bool converted = base::StringToInt(date, num); in ConvertDate() local 125 DCHECK(converted); in ConvertDate() 126 if (!converted) in ConvertDate() 312 bool converted = false; in SetInfoForMonthInputType() local 313 converted = base::StringToInt(year_month[0], &num); in SetInfoForMonthInputType() 314 DCHECK(converted); in SetInfoForMonthInputType() 316 converted = base::StringToInt(year_month[1], &num); in SetInfoForMonthInputType() 317 DCHECK(converted); in SetInfoForMonthInputType()
|
/external/jmonkeyengine/engine/src/desktop/jme3tools/converters/ |
D | MipMapGenerator.java | 94 Image converted = loader.load(current, false); in generateMipMaps() local 95 format = converted.getFormat(); in generateMipMaps() 96 output.add(converted.getData(0)); in generateMipMaps() 97 totalSize += converted.getData(0).capacity(); in generateMipMaps()
|
/external/webkit/Source/WebCore/plugins/ |
D | PluginPackage.cpp | 260 bool converted = false; in determineModuleVersionFromDescription() local 261 unsigned major = majorMinorParts[0].toUInt(&converted); in determineModuleVersionFromDescription() 262 if (converted) in determineModuleVersionFromDescription() 266 bool converted = false; in determineModuleVersionFromDescription() local 267 unsigned minor = majorMinorParts[1].toUInt(&converted); in determineModuleVersionFromDescription() 268 if (converted) in determineModuleVersionFromDescription()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
D | OutputStreamWriterTest.java | 587 String converted = new String(bout.toByteArray(), "ISO8859_1"); in test_close() local 588 assertTrue("invalid conversion 1: " + converted, converted in test_close() 597 converted = new String(bout.toByteArray(), "ISO8859_1"); in test_close() 598 assertTrue("invalid conversion 2: " + converted, converted in test_close() 601 converted = new String(bout.toByteArray(), "ISO8859_1"); in test_close() 602 assertTrue("invalid conversion 3: " + converted, converted in test_close()
|
/external/valgrind/main/coregrind/ |
D | m_libcbase.c | 69 Bool neg = False, converted = False; in VG_() local 81 converted = True; // Ok, we've actually converted a digit. in VG_() 86 if (!converted) str = str0; // If nothing converted, endptr points to in VG_() 94 Bool converted = False; in VG_() local 106 converted = True; // Ok, we've actually converted a digit. in VG_() 111 if (!converted) str = str0; // If nothing converted, endptr points to in VG_() 119 Bool neg = False, converted = False; in VG_() local 139 converted = True; // Ok, we've actually converted a digit. in VG_() 144 if (!converted) str = str0; // If nothing converted, endptr points to in VG_() 152 Bool converted = False; in VG_() local [all …]
|
/external/qemu/distrib/sdl-1.2.15/test/ |
D | testalpha.c | 183 SDL_Surface *converted; in LoadSprite() local 199 converted = SDL_DisplayFormat(sprite); in LoadSprite() 201 if ( converted == NULL ) { in LoadSprite() 206 sprite = converted; in LoadSprite() 219 converted = SDL_DisplayFormat(backing); in LoadSprite() 221 if ( converted == NULL ) { in LoadSprite() 227 backing = converted; in LoadSprite()
|
/external/llvm/test/CodeGen/X86/ |
D | fdiv.ll | 4 ; Exact division by a constant converted to multiplication. 12 ; Inexact division by a constant converted to multiplication.
|
/external/skia/src/animator/ |
D | SkAnimateBase.cpp | 162 void SkAnimateBase::packARGB(SkScalar array[], int count, SkTDOperandArray* converted) in packARGB() argument 165 converted->setCount(1); in packARGB() 168 (*converted)[0].fS32 = color; in packARGB()
|
/external/skia/legacy/src/animator/ |
D | SkAnimateBase.cpp | 166 void SkAnimateBase::packARGB(SkScalar array[], int count, SkTDOperandArray* converted) in packARGB() argument 169 converted->setCount(1); in packARGB() 172 (*converted)[0].fS32 = color; in packARGB()
|
/external/bison/lib/ |
D | vasnprintf.c | 2094 DCHAR_T *converted = result + length; in VASNPRINTF() local 2098 converted = in VASNPRINTF() 2102 converted, &converted_len); in VASNPRINTF() 2105 converted = in VASNPRINTF() 2107 converted, &converted_len); in VASNPRINTF() 2109 if (converted == NULL) in VASNPRINTF() 2120 if (converted != result + length) in VASNPRINTF() 2123 DCHAR_CPY (result + length, converted, converted_len); in VASNPRINTF() 2124 free (converted); in VASNPRINTF() 2222 DCHAR_T *converted = result + length; in VASNPRINTF() local [all …]
|
/external/doclava/src/com/google/doclava/ |
D | Converter.java | 654 Object converted; in initAnnotationValue() local 657 converted = Converter.obtainType((Type) orig); in initAnnotationValue() 660 converted = Converter.obtainField((FieldDoc) orig); in initAnnotationValue() 663 converted = Converter.obtainAnnotationInstance((AnnotationDesc) orig); in initAnnotationValue() 670 converted = values; in initAnnotationValue() 672 converted = orig; in initAnnotationValue() 674 v.init(converted); in initAnnotationValue()
|
/external/iptables/extensions/ |
D | libxt_dscp.man | 9 BE, EF, AFxx or CSx classes. It will then be converted
|
/external/srec/srec/EventLog/src/ |
D | riff.c | 107 int converted = value; in swapConstInt() local 108 unsigned char *cp = (unsigned char *) & converted; in swapConstInt() 117 return converted; in swapConstInt() 122 short converted = value; in swapConstShort() local 123 unsigned char *cp = (unsigned char *) & converted; in swapConstShort() 129 return converted; in swapConstShort()
|
/external/webkit/LayoutTests/fast/encoding/ |
D | parser-tests-10-expected.txt | 1 This test suite was converted from http://www.hixie.ch/tests/adhoc/html/parsing/encoding/all.html
|
D | parser-tests-110-expected.txt | 1 This test suite was converted from http://www.hixie.ch/tests/adhoc/html/parsing/encoding/all.html
|