Searched defs:converted (Results 26 - 50 of 55) sorted by path

123

/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DEmbed.c104 size_t converted = mbrtowc(out, (char*)in, argsize, &mbs); local
105 if (converted == 0)
108 if (converted == (size_t)-2) {
116 if (converted == (size_t)-1) {
127 argsize -= converted;
128 while (converted--)
132 /* successfully converted some bytes */
133 in += converted;
134 argsize -= converted;
/external/chromium_org/third_party/icu/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/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/chromium_org/third_party/webrtc/base/
H A Dmacconversion.cc47 bool converted = false; local
58 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8));
59 if (converted) *i = static_cast<int>(sint8);
63 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16));
64 if (converted) *i = static_cast<int>(sint16);
68 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32));
69 if (converted) *i = static_cast<int>(sint32);
73 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64));
74 if (converted) *i = static_cast<int>(sint64);
78 converted
150 bool converted = p_convertCFNumberToInt(cfn, &asInt); local
[all...]
H A Dproxydetect.cc958 bool converted = false; local
977 converted = p_convertHostCFStringRefToCPPString(hostCFStr, hostname);
978 if (converted) {
980 converted = p_convertCFNumberToInt(portCFNum, &port);
981 if (converted) {
/external/chromium_org/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/chromium_org/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/chromium_org/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/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/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/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/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/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/pixman/pixman/
H A Dpixman-access.c383 uint32_t converted = convert_pixel_from_a8r8g8b8 ( local
389 STORE_1 (image, dest, offset, converted & 0x01);
393 STORE_4 (image, dest, offset, converted & 0xf);
397 WRITE (image, (dest + offset), converted & 0xff);
401 WRITE (image, ((uint16_t *)dest + offset), converted & 0xffff);
405 STORE_24 (image, dest, offset, converted);
409 WRITE (image, ((uint32_t *)dest + offset), converted);
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_video.c957 SDL_Surface *converted; local
1006 converted = SDL_ConvertSurface(surface, format, flags);
1008 return(converted);
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestalpha.c183 SDL_Surface *converted; local
199 converted = SDL_DisplayFormat(sprite);
201 if ( converted == NULL ) {
206 sprite = converted;
219 converted = SDL_DisplayFormat(backing);
221 if ( converted == NULL ) {
227 backing = converted;
/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;

Completed in 1893 milliseconds

123