/third_party/skia/third_party/externals/icu/source/io/ |
D | sscanf.cpp | 41 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 …]
|
D | uscanf.cpp | 42 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/ |
D | sscanf.cpp | 41 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 …]
|
D | uscanf.cpp | 42 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/ |
D | taggedTemplateStringsWithUnicodeEscapes.types | 7 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 "
|
D | taggedTemplateStringsWithUnicodeEscapesES6.types | 7 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/node/deps/v8/third_party/inspector_protocol/lib/ |
D | base_string_adapter_cc.template | 56 if (auto converted = toProtocolValue(item, depth - 1)) { 57 result->pushValue(std::move(converted)); 65 if (auto converted = toProtocolValue(kv.second, depth - 1)) { 66 result->setValue(kv.first, std::move(converted)); 101 base::Value converted = toBaseValue(list->at(i), depth - 1); 102 if (!converted.is_none()) 103 result.Append(std::move(converted)); 112 base::Value converted = toBaseValue(entry.second, depth - 1); 113 if (!converted.is_none()) 114 result.SetKey(entry.first, std::move(converted));
|
/third_party/curl/src/ |
D | tool_filetime.c | 56 curl_off_t converted = (curl_off_t)ft.dwLowDateTime in getfiletime() local 59 if(converted < CURL_OFF_T_C(116444736000000000)) in getfiletime() 62 *stamp = (converted - CURL_OFF_T_C(116444736000000000)) / 10000000; in getfiletime() 117 curl_off_t converted = ((curl_off_t)filetime * 10000000) + in setfiletime() local 120 ft.dwLowDateTime = (DWORD)(converted & 0xFFFFFFFF); in setfiletime() 121 ft.dwHighDateTime = (DWORD)(converted >> 32); in setfiletime()
|
/third_party/node/tools/inspector_protocol/lib/ |
D | base_string_adapter_cc.template | 56 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/ |
D | googletest-port-test.cc | 125 explicit Castable(bool* converted) : converted_(converted) {} in Castable() argument 136 bool converted = false; in TEST() local 137 Castable castable(&converted); in TEST() 139 EXPECT_TRUE(converted); in TEST() 144 explicit ConstCastable(bool* converted) : converted_(converted) {} in ConstCastable() argument 155 bool converted = false; in TEST() local 156 const ConstCastable const_castable(&converted); in TEST() 158 EXPECT_TRUE(converted); in TEST() 163 ConstAndNonConstCastable(bool* converted, bool* const_converted) in ConstAndNonConstCastable() argument 164 : converted_(converted), const_converted_(const_converted) {} in ConstAndNonConstCastable() [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/APPLE/ |
D | APPLE_texture_packed_float.txt | 110 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/openGLES/extensions/APPLE/ |
D | APPLE_texture_packed_float.txt | 110 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/ |
D | DSLVar.cpp | 199 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/docs/mkdocs/docs/api/basic_json/ |
D | get.md | 24 …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++
|
/third_party/python/Modules/_sqlite/ |
D | cursor.c | 265 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/ |
D | DescriptorsTest.cs | 68 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/ |
D | NV_packed_float.txt | 119 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/ |
D | NV_packed_float.txt | 119 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/node/deps/openssl/openssl/crypto/async/arch/ |
D | async_win.c | 28 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/openssl/crypto/async/arch/ |
D | async_win.c | 28 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/tools/gyp/pylib/gyp/ |
D | easy_xml_test.py | 38 converted = "<test>'"
&
foo" 39 converted_apos = converted.replace("'", "'") 43 % (converted, converted_apos),
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | easy_xml_test.py | 38 converted = "<test>'"
&
foo" 39 converted_apos = converted.replace("'", "'") 43 % (converted, converted_apos),
|
/third_party/vk-gl-cts/framework/delibs/deimage/ |
D | deImage.c | 100 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/curl/m4/ |
D | xc-translit.m4 | 31 dnl converted to the underscore '_' character. 56 dnl converted to the underscore '_' character. 84 dnl converted to the underscore '_' character and alnum 85 dnl characters are converted to uppercase. 115 dnl converted to the underscore '_' character and alnum 116 dnl characters are converted to uppercase.
|
/third_party/curl/docs/libcurl/ |
D | curl_mprintf.md | 70 that specifies how subsequent arguments are converted for output. 115 The value should be converted to its "alternate form". 123 The converted value is to be left adjusted on the field boundary. (The default 124 is right justification.) The converted value is padded on the right with 142 minimum field width. If the converted value has fewer characters than the 208 The int argument is converted to signed decimal notation. The precision, if 209 any, gives the minimum number of digits that must appear; if the converted 216 The unsigned int argument is converted to unsigned octal (o), unsigned decimal 220 of digits that must appear; if the converted value requires fewer digits, it 235 The double argument is converted in style f or e. [all …]
|