Home
last modified time | relevance | path

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

123456789

/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/chromium/third_party/libjingle/source/talk/base/
Dmacconversion.cc64 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/
Dutf_string_conversions_unittest.cc98 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 …]
Dsys_string_conversions_mac.mm32 CFIndex converted = CFStringGetBytes(cfstring,
40 if (converted == 0 || out_size == 0)
52 converted = CFStringGetBytes(cfstring,
60 if (converted == 0)
/external/icu4c/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/chromium/chrome/browser/ui/cocoa/
Dbase_view_unittest.mm34 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/
Dgtest-port_test.cc93 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/
Dgtest-port_test.cc95 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/
Dgtest-port_test.cc95 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/
Dcredit_card.cc124 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/
DMipMapGenerator.java94 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/
DPluginPackage.cpp260 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/
DOutputStreamWriterTest.java587 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/
Dm_libcbase.c69 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/
Dtestalpha.c183 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/
Dfdiv.ll4 ; Exact division by a constant converted to multiplication.
12 ; Inexact division by a constant converted to multiplication.
/external/skia/src/animator/
DSkAnimateBase.cpp162 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/
DSkAnimateBase.cpp166 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/
Dvasnprintf.c2094 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/
DConverter.java654 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/
Dlibxt_dscp.man9 BE, EF, AFxx or CSx classes. It will then be converted
/external/srec/srec/EventLog/src/
Driff.c107 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/
Dparser-tests-10-expected.txt1 This test suite was converted from http://www.hixie.ch/tests/adhoc/html/parsing/encoding/all.html
Dparser-tests-110-expected.txt1 This test suite was converted from http://www.hixie.ch/tests/adhoc/html/parsing/encoding/all.html

123456789