Home
last modified time | relevance | path

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

12345678910>>...47

/third_party/skia/third_party/externals/icu/source/io/
Dsscanf.cpp41 int32_t converted; in u_sscanf() local
44 converted = u_vsscanf(buffer, patternSpecification, ap); in u_sscanf()
47 return converted; in u_sscanf()
56 int32_t converted; in u_sscanf_u() local
59 converted = u_vsscanf_u(buffer, patternSpecification, ap); in u_sscanf_u()
62 return converted; in u_sscanf_u()
70 int32_t converted; in u_vsscanf() local
88 converted = u_vsscanf_u(buffer, pattern, ap); in u_vsscanf()
95 return converted; in u_vsscanf()
103 int32_t converted; in u_vsscanf_u() local
[all …]
Duscanf.cpp42 int32_t converted; in u_fscanf() local
45 converted = u_vfscanf(f, patternSpecification, ap); in u_fscanf()
48 return converted; in u_fscanf()
57 int32_t converted; in u_fscanf_u() local
60 converted = u_vfscanf_u(f, patternSpecification, ap); in u_fscanf_u()
63 return converted; in u_fscanf_u()
71 int32_t converted; in u_vfscanf() local
89 converted = u_vfscanf_u(f, pattern, ap); in u_vfscanf()
96 return converted; in u_vfscanf()
/third_party/flutter/skia/third_party/externals/icu/source/io/
Dsscanf.cpp41 int32_t converted; in u_sscanf() local
44 converted = u_vsscanf(buffer, patternSpecification, ap); in u_sscanf()
47 return converted; in u_sscanf()
56 int32_t converted; in u_sscanf_u() local
59 converted = u_vsscanf_u(buffer, patternSpecification, ap); in u_sscanf_u()
62 return converted; in u_sscanf_u()
70 int32_t converted; in u_vsscanf() local
88 converted = u_vsscanf_u(buffer, pattern, ap); in u_vsscanf()
95 return converted; in u_vsscanf()
103 int32_t converted; in u_vsscanf_u() local
[all …]
Duscanf.cpp42 int32_t converted; in u_fscanf() local
45 converted = u_vfscanf(f, patternSpecification, ap); in u_fscanf()
48 return converted; in u_fscanf()
57 int32_t converted; in u_fscanf_u() local
60 converted = u_vfscanf_u(f, patternSpecification, ap); in u_fscanf_u()
63 return converted; in u_fscanf_u()
71 int32_t converted; in u_vfscanf() local
89 converted = u_vfscanf_u(f, pattern, ap); in u_vfscanf()
96 return converted; in u_vfscanf()
/third_party/icu/icu4c/source/io/
Dsscanf.cpp41 int32_t converted; in u_sscanf() local
44 converted = u_vsscanf(buffer, patternSpecification, ap); in u_sscanf()
47 return converted; in u_sscanf()
56 int32_t converted; in u_sscanf_u() local
59 converted = u_vsscanf_u(buffer, patternSpecification, ap); in u_sscanf_u()
62 return converted; in u_sscanf_u()
70 int32_t converted; in u_vsscanf() local
88 converted = u_vsscanf_u(buffer, pattern, ap); in u_vsscanf()
95 return converted; in u_vsscanf()
103 int32_t converted; in u_vsscanf_u() local
[all …]
Duscanf.cpp42 int32_t converted; in u_fscanf() local
45 converted = u_vfscanf(f, patternSpecification, ap); in u_fscanf()
48 return converted; in u_fscanf()
57 int32_t converted; in u_fscanf_u() local
60 converted = u_vfscanf_u(f, patternSpecification, ap); in u_fscanf_u()
63 return converted; in u_fscanf_u()
71 int32_t converted; in u_vfscanf() local
89 converted = u_vfscanf_u(f, pattern, ap); in u_vfscanf()
96 return converted; in u_vfscanf()
/third_party/typescript/tests/baselines/reference/
DtaggedTemplateStringsWithUnicodeEscapes.types7 f `'\u{1f4a9}'${ " should be converted to " }'\uD83D\uDCA9'`;
8 >f `'\u{1f4a9}'${ " should be converted to " }'\uD83D\uDCA9'` : void
10 >`'\u{1f4a9}'${ " should be converted to " }'\uD83D\uDCA9'` : string
11 >" should be converted to " : " should be converted to "
DtaggedTemplateStringsWithUnicodeEscapesES6.types7 f `'\u{1f4a9}'${ " should be converted to " }'\uD83D\uDCA9'`;
8 >f `'\u{1f4a9}'${ " should be converted to " }'\uD83D\uDCA9'` : void
10 >`'\u{1f4a9}'${ " should be converted to " }'\uD83D\uDCA9'` : string
11 >" should be converted to " : " should be converted to "
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/
DSDL_cocoavideo.m173 SDL_Surface *converted;
179 converted = SDL_ConvertSurfaceFormat(surface, SDL_PIXELFORMAT_RGBA32, 0);
180 if (!converted) {
185 pixelsWide: converted->w
186 pixelsHigh: converted->h
192 bytesPerRow: converted->pitch
193 bitsPerPixel: converted->format->BitsPerPixel] autorelease];
195 SDL_FreeSurface(converted);
201 SDL_memcpy(pixels, converted->pixels, converted->h * converted->pitch);
202 SDL_FreeSurface(converted);
/third_party/node/tools/inspector_protocol/lib/
Dbase_string_adapter_cc.template56 std::unique_ptr<protocol::Value> converted =
58 if (converted)
59 result->pushValue(std::move(converted));
70 std::unique_ptr<protocol::Value> converted =
72 if (converted)
73 result->setValue(it.key(), std::move(converted));
109 std::unique_ptr<base::Value> converted =
111 if (converted)
112 result->Append(std::move(converted));
121 std::unique_ptr<base::Value> converted =
[all …]
/third_party/googletest/googletest/test/
Dgoogletest-port-test.cc122 explicit Castable(bool* converted) : converted_(converted) {} in Castable() argument
133 bool converted = false; in TEST() local
134 Castable castable(&converted); in TEST()
136 EXPECT_TRUE(converted); in TEST()
141 explicit ConstCastable(bool* converted) : converted_(converted) {} in ConstCastable() argument
152 bool converted = false; in TEST() local
153 const ConstCastable const_castable(&converted); in TEST()
155 EXPECT_TRUE(converted); in TEST()
160 ConstAndNonConstCastable(bool* converted, bool* const_converted) in ConstAndNonConstCastable() argument
161 : converted_(converted), const_converted_(const_converted) {} in ConstAndNonConstCastable()
[all …]
/third_party/openGLES/extensions/APPLE/
DAPPLE_texture_packed_float.txt110 When a floating-point value is converted to an unsigned 11-bit
114 zero. This means negative values are converted to zero.
117 converted to 65024. Additionally: negative infinity is converted
118 to zero; positive infinity is converted to positive infinity; and
119 both positive and negative NaN are converted to positive NaN.
147 When a floating-point value is converted to an unsigned 10-bit
151 zero. This means negative values are converted to zero.
154 converted to 64512. Additionally: negative infinity is converted
155 to zero; positive infinity is converted to positive infinity; and
156 both positive and negative NaN are converted to positive NaN.
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/APPLE/
DAPPLE_texture_packed_float.txt110 When a floating-point value is converted to an unsigned 11-bit
114 zero. This means negative values are converted to zero.
117 converted to 65024. Additionally: negative infinity is converted
118 to zero; positive infinity is converted to positive infinity; and
119 both positive and negative NaN are converted to positive NaN.
147 When a floating-point value is converted to an unsigned 10-bit
151 zero. This means negative values are converted to zero.
154 converted to 64512. Additionally: negative infinity is converted
155 to zero; positive infinity is converted to positive infinity; and
156 both positive and negative NaN are converted to positive NaN.
[all …]
/third_party/skia/src/sksl/dsl/
DDSLVar.cpp199 ExpressionArray converted; in eval() local
200 converted.push_back(x.release()); in eval()
201 return this->eval(std::move(converted), pos); in eval()
205 ExpressionArray converted; in eval() local
206 converted.push_back(x.release()); in eval()
207 converted.push_back(y.release()); in eval()
208 return this->eval(std::move(converted), pos); in eval()
/third_party/json/doc/mkdocs/docs/api/basic_json/
Dget.md24 …tible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). The value is converted by
44 converted by calling the `json_serializer<ValueType>` `from_json()` method.
82 1. copy of the JSON value, converted to `ValueType`
83 2. a copy of `#!cpp *this`, converted into `BasicJsonType`
103 be converted to integers, (2) A JSON array can be converted to a standard
104 `std::vector<short>`, (3) A JSON object can be converted to C++
Doperator_ValueType.md18 copy of the JSON value, converted to `ValueType`
54 be converted to integers, (2) A JSON array can be converted to a standard
55 `std::vector<short>`, (3) A JSON object can be converted to C++
/third_party/python/Modules/_sqlite/
Dcursor.c265 PyObject* converted; in _pysqlite_fetch_one_row() local
309 converted = Py_NewRef(Py_None); in _pysqlite_fetch_one_row()
317 converted = PyObject_CallOneArg(converter, item); in _pysqlite_fetch_one_row()
325 converted = Py_NewRef(Py_None); in _pysqlite_fetch_one_row()
327 converted = PyLong_FromLongLong(sqlite3_column_int64(self->statement->st, i)); in _pysqlite_fetch_one_row()
329 converted = PyFloat_FromDouble(sqlite3_column_double(self->statement->st, i)); in _pysqlite_fetch_one_row()
339 converted = PyUnicode_FromStringAndSize(text, nbytes); in _pysqlite_fetch_one_row()
340 if (!converted && PyErr_ExceptionMatches(PyExc_UnicodeDecodeError)) { in _pysqlite_fetch_one_row()
358 converted = PyBytes_FromStringAndSize(text, nbytes); in _pysqlite_fetch_one_row()
360 converted = PyByteArray_FromStringAndSize(text, nbytes); in _pysqlite_fetch_one_row()
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs68 var converted = FileDescriptor.BuildFromByteStrings(descriptorData); in FileDescriptor_BuildFromByteStrings()
69 Assert.AreEqual(3, converted.Count); in FileDescriptor_BuildFromByteStrings()
70 TestFileDescriptor(converted[2], converted[1], converted[0]); in FileDescriptor_BuildFromByteStrings()
233 var converted = FileDescriptor.BuildFromByteStrings(descriptorData); in FieldDescriptor_BuildFromByteStrings()
235 converted[2], in FieldDescriptor_BuildFromByteStrings()
236 converted[2].FindTypeByName<MessageDescriptor>("TestAllTypes"), in FieldDescriptor_BuildFromByteStrings()
237 converted[2].FindTypeByName<MessageDescriptor>("ForeignMessage"), in FieldDescriptor_BuildFromByteStrings()
238 converted[1].FindTypeByName<MessageDescriptor>("ImportMessage")); in FieldDescriptor_BuildFromByteStrings()
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_packed_float.txt119 When a floating-point value is converted to an unsigned 11-bit
123 zero. This means negative values are converted to zero.
126 converted to 65024. Additionally: negative infinity is converted
127 to zero; positive infinity is converted to positive infinity; and
128 both positive and negative NaN are converted to positive NaN.
156 When a floating-point value is converted to an unsigned 10-bit
160 zero. This means negative values are converted to zero.
163 converted to 64512. Additionally: negative infinity is converted
164 to zero; positive infinity is converted to positive infinity; and
165 both positive and negative NaN are converted to positive NaN.
[all …]
/third_party/openGLES/extensions/NV/
DNV_packed_float.txt119 When a floating-point value is converted to an unsigned 11-bit
123 zero. This means negative values are converted to zero.
126 converted to 65024. Additionally: negative infinity is converted
127 to zero; positive infinity is converted to positive infinity; and
128 both positive and negative NaN are converted to positive NaN.
156 When a floating-point value is converted to an unsigned 10-bit
160 zero. This means negative values are converted to zero.
163 converted to 64512. Additionally: negative infinity is converted
164 to zero; positive infinity is converted to positive infinity; and
165 both positive and negative NaN are converted to positive NaN.
[all …]
/third_party/openssl/crypto/async/arch/
Dasync_win.c28 if (fibre != NULL && fibre->fibre != NULL && fibre->converted) { in async_local_cleanup()
43 fibre->converted = 0; in async_fibre_init_dispatcher()
48 fibre->converted = 1; in async_fibre_init_dispatcher()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Deasy_xml_test.py38 converted = '&lt;test&gt;\'&quot;&#xD;&amp;&#xA;foo'
39 converted_apos = converted.replace("'", '&apos;')
43 (converted, converted_apos))
/third_party/node/tools/gyp/pylib/gyp/
Deasy_xml_test.py41 converted = "&lt;test&gt;'&quot;&#xD;&amp;&#xA;foo"
42 converted_apos = converted.replace("'", "&apos;")
46 % (converted, converted_apos),
/third_party/vk-gl-cts/framework/delibs/deimage/
DdeImage.c100 deImage* converted = deImage_create(width, height, format); in deImage_convertFormat() local
101 if (!converted) in deImage_convertFormat()
105 memcpy(converted->pixels, image->pixels, width * height * deImageFormat_getBytesPerPixel(format)); in deImage_convertFormat()
111 deImage_setPixel(converted, x, y, deImage_getPixel(image, x, y)); in deImage_convertFormat()
114 return converted; in deImage_convertFormat()
/third_party/node/deps/cares/m4/
Dxc-translit.m429 dnl converted to the underscore '_' character.
54 dnl converted to the underscore '_' character.
82 dnl converted to the underscore '_' character and alnum
83 dnl characters are converted to uppercase.
113 dnl converted to the underscore '_' character and alnum
114 dnl characters are converted to uppercase.

12345678910>>...47