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

/external/icu/icu4c/source/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 */
790 /* we converted 1 arg */
873 /* we converted 1 arg */
942 /* we converted
1305 int32_t count, converted, argConsumed, cpConsumed; local
[all...]
/external/skia/src/animator/
H A DSkAnimateBase.cpp162 void SkAnimateBase::packARGB(SkScalar array[], int count, SkTDOperandArray* converted) argument
165 converted->setCount(1);
170 (*converted)[0].fS32 = color;
H A DSkDisplayApply.cpp134 SkTypedArray converted; local
138 animator->packARGB(&values->fScalar, count, &converted);
139 values = converted.begin();
140 count = converted.count();
/external/deqp/framework/delibs/deimage/
H A DdeImage.c100 deImage* converted = deImage_create(width, height, format); local
101 if (!converted)
105 memcpy(converted->pixels, image->pixels, width * height * deImageFormat_getBytesPerPixel(format));
111 deImage_setPixel(converted, x, y, deImage_getPixel(image, x, y));
114 return converted;
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-port_test.cc95 explicit Castable(bool* converted) : converted_(converted) {} argument
106 bool converted = false; local
107 Castable castable(&converted);
109 EXPECT_TRUE(converted);
114 explicit ConstCastable(bool* converted) : converted_(converted) {} argument
125 bool converted = false; local
126 const ConstCastable const_castable(&converted);
128 EXPECT_TRUE(converted);
133 ConstAndNonConstCastable(bool* converted, bool* const_converted) argument
150 bool converted = false; local
167 To(bool* converted) argument
171 bool converted = false; local
[all...]
/external/gtest/test/
H A Dgtest-port_test.cc132 explicit Castable(bool* converted) : converted_(converted) {} argument
143 bool converted = false; local
144 Castable castable(&converted);
146 EXPECT_TRUE(converted);
151 explicit ConstCastable(bool* converted) : converted_(converted) {} argument
162 bool converted = false; local
163 const ConstCastable const_castable(&converted);
165 EXPECT_TRUE(converted);
170 ConstAndNonConstCastable(bool* converted, bool* const_converted) argument
187 bool converted = false; local
204 To(bool* converted) argument
208 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/google-breakpad/src/testing/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:__anon5283::FromType
533 ToType(const FromType& x) { *x.converted() = true; } // NOLINT
537 bool converted = false; local
538 FromType x(&converted);
540 EXPECT_TRUE(converted) << "Return must convert its argument in its own "
542 converted = false;
544 EXPECT_FALSE(converted) << "Action must NOT convert its argument "
/external/skia/dm/
H A DDM.cpp579 SkBitmap converted; local
581 if (!bitmap->copyTo(&converted, kN32_SkColorType)) {
585 bitmap = &converted;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.event_1.2.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/mesa3d/src/glsl/
H A Dast_function.cpp214 ir_rvalue *converted local
216 actual->replace_with(converted);
578 * that can be converted to the element type of the array according to
/external/v8/test/cctest/
H A Dcctest.h333 uint16_t* converted = i::NewArray<uint16_t>(array_length); local
334 for (int i = 0; i < array_length; i++) converted[i] = source[i];
335 return converted;
/external/v8/test/cctest/compiler/
H A Dtest-js-typed-lowering.cc670 static void CheckIsConvertedToNumber(Node* val, Node* converted) { argument
672 CHECK_EQ(val, converted);
674 CHECK_EQ(IrOpcode::kBooleanToNumber, converted->opcode());
675 CHECK_EQ(val, converted->InputAt(0));
677 if (converted->opcode() == IrOpcode::kNumberConstant) return;
678 CHECK_EQ(IrOpcode::kJSToNumber, converted->opcode());
679 CHECK_EQ(val, converted->InputAt(0));
/external/valgrind/coregrind/
H A Dm_libcbase.c97 Bool neg = False, converted = False; local
109 converted = True; // Ok, we've actually converted a digit.
114 if (!converted) str = str0; // If nothing converted, endptr points to
123 Bool converted = False; local
135 converted = True; // Ok, we've actually converted a digit.
140 if (!converted) str = str0; // If nothing converted, endpt
149 Bool neg = False, converted = False; local
183 Bool converted = False; local
[all...]
/external/bison/lib/
H A Dvasnprintf.c1716 of the converted array, the converted array shall contain a
2094 DCHAR_T *converted = result + length; local
2098 converted =
2102 converted, &converted_len);
2105 converted =
2107 converted, &converted_len);
2109 if (converted == NULL)
2120 if (converted != result + length)
2123 DCHAR_CPY (result + length, converted, converted_le
2222 DCHAR_T *converted = result + length; local
2350 DCHAR_T *converted = result + length; local
[all...]
/external/v8/src/
H A Druntime.cc310 // exception, the exception is converted to an empty handle in
4829 Handle<Object> converted; local
4831 isolate, converted, Execution::ToString(isolate, key), Name);
4832 return Handle<Name>::cast(converted);
5210 Handle<Object> converted; local
5212 isolate, converted, Execution::ToString(isolate, key), Object);
5213 Handle<String> name = Handle<String>::cast(converted);
5262 Handle<Object> converted; local
5264 isolate, converted, Execution::ToString(isolate, key), Object);
5265 Handle<String> name = Handle<String>::cast(converted);
5302 Handle<Object> converted; local
6082 Handle<Object> converted; local
[all...]
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp5313 (converted to signed char). Filtertype 0 isn't a difference though, so use unsigned there.
5708 unsigned char* converted; local
5711 converted = (unsigned char*)lodepng_malloc(size);
5712 if(!converted && size) state->error = 83; /*alloc fail*/
5715 state->error = lodepng_convert(converted, image, &info.color, &state->info_raw, w, h, 0 /*fix_png*/);
5717 if(!state->error) preProcessScanlines(&data, &datasize, converted, w, h, &info, &state->encoder);
5718 lodepng_free(converted);
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...

Completed in 2003 milliseconds