Searched defs:converted (Results 1 - 20 of 20) sorted by relevance

/external/icu4c/io/
H A Dsscanf.c39 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...]
H A Duscanf.c40 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;
H A Duscanf_p.c292 * @param argConverted The number of arguments converted and assigned, or -1 if an
398 /* will contain the # of items converted thus far */
409 /* we converted 0 args */
471 /* we converted 1 arg */
570 /* we converted 1 arg */
660 /* we converted 1 arg */
721 /* we converted 1 arg */
791 /* we converted 1 arg */
874 /* we converted 1 arg */
943 /* we converted
1306 int32_t count, converted, argConsumed, cpConsumed; local
[all...]
/external/chromium/base/
H A Dutf_string_conversions_unittest.cc60 // 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[
143 std::string converted; local
176 std::string converted; local
206 const std::string& converted = WideToUTF8(wmultistring); local
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dmacconversion.cc64 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
167 bool converted = p_convertCFNumberToInt(cfn, &asInt); local
[all...]
H A Dproxydetect.cc973 bool converted = false; local
992 converted = p_convertHostCFStringRefToCPPString(hostCFStr, hostname);
993 if (converted) {
995 converted = p_convertCFNumberToInt(portCFNum, &port);
996 if (converted) {
/external/skia/src/animator/
H A DSkAnimateBase.cpp174 void SkAnimateBase::packARGB(SkScalar array[], int count, SkTDOperandArray* converted) argument
177 converted->setCount(1);
180 (*converted)[0].fS32 = color;
H A DSkDisplayApply.cpp142 SkTypedArray converted; local
146 animator->packARGB(&values->fScalar, count, &converted);
147 values = converted.begin();
148 count = converted.count();
/external/webkit/Source/WebCore/plugins/
H A DPluginPackage.cpp260 bool converted = false; local
261 unsigned major = majorMinorParts[0].toUInt(&converted);
262 if (converted)
266 bool converted = false; local
267 unsigned minor = majorMinorParts[1].toUInt(&converted);
268 if (converted)
/external/chromium/chrome/browser/autofill/
H A Dcredit_card.cc124 bool converted = base::StringToInt(date, num); local
125 DCHECK(converted);
126 if (!converted)
312 bool converted = false; local
313 converted = base::StringToInt(year_month[0], &num);
314 DCHECK(converted);
316 converted = base::StringToInt(year_month[1], &num);
317 DCHECK(converted);
/external/chromium/testing/gtest/test/
H A Dgtest-port_test.cc93 Castable(bool* converted) : converted_(converted) {} argument
104 bool converted = false; local
105 Castable castable(&converted);
107 EXPECT_TRUE(converted);
112 ConstCastable(bool* converted) : converted_(converted) {} argument
123 bool converted = false; local
124 const ConstCastable const_castable(&converted);
126 EXPECT_TRUE(converted);
131 ConstAndNonConstCastable(bool* converted, bool* const_converted) argument
148 bool converted = false; local
165 To(bool* converted) argument
169 bool converted = false; local
[all...]
/external/svox/pico/tts/
H A Dsvox_ssml_parser.cpp596 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_MEDIU
666 char* converted = NULL; local
736 char* converted = NULL; local
816 char* converted = NULL; local
[all...]
/external/chromium/testing/gmock/test/
H A Dgmock-actions_test.cc389 // Tests that an Action<From> object can be converted to a
515 // Tests that the type of the value passed into Return is converted into T
522 bool* converted() const { return converted_; } function in class:__anon2406::FromType
532 ToType(const FromType& x) { *x.converted() = true; }
536 bool converted = false; local
537 FromType x(&converted);
539 EXPECT_TRUE(converted) << "Return must convert its argument in its own "
541 converted = false;
543 EXPECT_FALSE(converted) << "Action must NOT convert its argument "
/external/mesa3d/src/glsl/
H A Dast_function.cpp158 ir_rvalue *converted = convert_component(actual, formal->type); local
159 actual->replace_with(converted);
357 * that can be converted to the element type of the array according to
/external/srec/srec/EventLog/src/
H A Driff.c50 * - fills in *length with the number of samples converted
107 int converted = value; local
108 unsigned char *cp = (unsigned char *) & converted;
117 return converted;
122 short converted = value; local
123 unsigned char *cp = (unsigned char *) & converted;
129 return converted;
/external/valgrind/main/coregrind/
H A Dm_libcbase.c69 Bool neg = False, converted = False; local
81 converted = True; // Ok, we've actually converted a digit.
86 if (!converted) str = str0; // If nothing converted, endptr points to
94 Bool neg = False, converted = False; local
114 converted = True; // Ok, we've actually converted a digit.
119 if (!converted) str = str0; // If nothing converted, endpt
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_video.c940 SDL_Surface *converted; local
984 converted = SDL_ConvertSurface(surface, format, flags);
986 return(converted);
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.cpp1260 bool converted = true; local
1262 for (unsigned i = 0; converted && i + 1 < static_cast<unsigned>(types.count()); ++i) {
1272 converted = false;
1276 qMatchDebug() << "Match: " << method.signature() << (converted ? "converted":"failed to convert") << "distance " << matchDistance;
1278 if (converted) {
/external/webkit/Source/WebKit/android/jni/
H A DWebCoreFrameBridge.cpp555 WTF::String converted = url.string(); local
559 return converted;
567 converted = newUrl.string();
570 return converted;
/external/v8/test/cctest/
H A Dtest-api.cc327 uint16_t* converted = i::NewArray<uint16_t>(array_length); local
328 for (int i = 0; i < array_length; i++) converted[i] = source[i];
329 return converted;

Completed in 473 milliseconds