/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-date-prototype.c | 353 ecma_length_t conversions = 0; in ecma_builtin_date_prototype_dispatch_set() local 368 conversions = 1; in ecma_builtin_date_prototype_dispatch_set() 376 conversions = 2; in ecma_builtin_date_prototype_dispatch_set() 384 conversions = 3; in ecma_builtin_date_prototype_dispatch_set() 392 conversions = 4; in ecma_builtin_date_prototype_dispatch_set() 397 if (conversions > arguments_number) in ecma_builtin_date_prototype_dispatch_set() 399 conversions = arguments_number; in ecma_builtin_date_prototype_dispatch_set() 402 for (ecma_length_t i = 0; i < conversions; i++) in ecma_builtin_date_prototype_dispatch_set() 444 if (conversions >= 2) in ecma_builtin_date_prototype_dispatch_set() 448 if (conversions >= 3) in ecma_builtin_date_prototype_dispatch_set() [all …]
|
/third_party/node/deps/npm/node_modules/color-convert/ |
D | route.js | 1 var conversions = require('./conversions'); variable 17 var models = Object.keys(conversions); 40 var adjacents = Object.keys(conversions[current]); 65 var fn = conversions[graph[toModel].parent][toModel]; 70 fn = link(conversions[graph[cur].parent][cur], fn);
|
D | README.md | 59 …conversions.js](conversions.js)), but can be converted by means of sub-conversions (e.g. XYZ -> **… 61 …conversions _may_ result in a loss of precision, and exist only to be complete. For a list of "dir…
|
D | index.js | 1 var conversions = require('./conversions'); variable 6 var models = Object.keys(conversions); 64 Object.defineProperty(convert[fromModel], 'channels', {value: conversions[fromModel].channels}); 65 Object.defineProperty(convert[fromModel], 'labels', {value: conversions[fromModel].labels});
|
/third_party/abseil-cpp/absl/container/ |
D | flat_hash_map_test.cc | 164 int conversions = 0; in TEST() local 169 m[LazyInt(1, &conversions)] = 1; in TEST() 171 EXPECT_EQ(conversions, 1); in TEST() 176 m[LazyInt(1, &conversions)] = 2; in TEST() 178 EXPECT_EQ(conversions, 1); in TEST() 183 m.try_emplace(LazyInt(2, &conversions), 3); in TEST() 185 EXPECT_EQ(conversions, 2); in TEST() 190 m.try_emplace(LazyInt(2, &conversions), 4); in TEST() 192 EXPECT_EQ(conversions, 2); in TEST()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
D | flat_hash_map_test.cc | 164 int conversions = 0; in TEST() local 169 m[LazyInt(1, &conversions)] = 1; in TEST() 171 EXPECT_EQ(conversions, 1); in TEST() 176 m[LazyInt(1, &conversions)] = 2; in TEST() 178 EXPECT_EQ(conversions, 1); in TEST() 183 m.try_emplace(LazyInt(2, &conversions), 3); in TEST() 185 EXPECT_EQ(conversions, 2); in TEST() 190 m.try_emplace(LazyInt(2, &conversions), 4); in TEST() 192 EXPECT_EQ(conversions, 2); in TEST()
|
/third_party/boost/libs/optional/test/ |
D | optional_test_old_impl.cpp | 84 static int conversions; member 87 operator int() const { conversions += 1; return _val; } in operator int() 90 int FatToIntConverter::conversions = 0; member in FatToIntConverter 100 BOOST_TEST(FatToIntConverter::conversions == 0); in test_function_value_or() 104 BOOST_TEST(FatToIntConverter::conversions == 1); in test_function_value_or()
|
D | optional_test_value_access.cpp | 83 static int conversions; member 86 operator int() const { conversions += 1; return _val; } in operator int() 89 int FatToIntConverter::conversions = 0; member in FatToIntConverter 99 BOOST_TEST(FatToIntConverter::conversions == 0); in test_function_value_or() 103 BOOST_TEST(FatToIntConverter::conversions == 1); in test_function_value_or()
|
/third_party/boost/libs/numeric/conversion/doc/ |
D | numeric_cast.qbk | 15 The lack of preservation of range makes conversions between numeric types 16 error prone. This is true for both implicit conversions and explicit 17 conversions (through `static_cast`). 22 There are several situations where conversions are unsafe: 33 behavior for overflow is undefined for all conversions (except the 37 By default `numeric_cast` adheres to the rules for implicit conversions mandated by 95 The following example performs some typical conversions between numeric types: 139 // but *conversions* to a signed type ARE range checked by numeric_cast.
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlists/vk-default/ |
D | glsl.txt | 265 dEQP-VK.glsl.conversions.scalar_to_scalar.float_to_float_vertex 266 dEQP-VK.glsl.conversions.scalar_to_scalar.float_to_float_fragment 267 dEQP-VK.glsl.conversions.scalar_to_scalar.float_to_int_vertex 268 dEQP-VK.glsl.conversions.scalar_to_scalar.float_to_int_fragment 269 dEQP-VK.glsl.conversions.scalar_to_scalar.float_to_bool_vertex 270 dEQP-VK.glsl.conversions.scalar_to_scalar.float_to_bool_fragment 271 dEQP-VK.glsl.conversions.scalar_to_scalar.int_to_float_vertex 272 dEQP-VK.glsl.conversions.scalar_to_scalar.int_to_float_fragment 273 dEQP-VK.glsl.conversions.scalar_to_scalar.int_to_int_vertex 274 dEQP-VK.glsl.conversions.scalar_to_scalar.int_to_int_fragment [all …]
|
/third_party/boost/libs/convert/doc/ |
D | user_types.qbk | 11 …nality is required. That said, conversions to certain types are very common (for example, string\/… 35 That allows handling conversions of user-defined types with ['`std::iostream`]-based converters: 45 …nv::strol` after the following ['change-to-string] and ['string-to-change] conversions are defined: 54 That allows handling conversions of user-defined types with `boost::cnv::strtol`:
|
D | converters.qbk | 13 …oost.Convert]. The library provides several converters for common type conversions with varying de… 23 …capable of handling many types (like string-to-type and type-to-string conversions). Alternatively… 47 …terpreted in the context of the potential implicit type promotions and conversions allowed ['by th… 52 …d conversions are not desirable, then it is the converter's responsibility to address that issue. …
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_shader_implicit_conversions.txt | 73 implicit conversions: 87 No implicit conversions are provided to convert from unsigned to signed 89 implicit array or structure conversions. 107 The conversions in the table above are done only as indicated by other 121 then the conversions from section 4.1.10 "Implicit Conversions" are 126 do not match, the conversions from Section &4.1.10 "Implicit 133 Boolean. Either the operands' types must match, or the conversions 176 the implicit conversions in section 4.1.10 (Implicit Conversions) will 183 If implicit conversions can be used to find more than one matching 185 match, the conversions between calling argument and formal parameter [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_shader_implicit_conversions.txt | 73 implicit conversions: 87 No implicit conversions are provided to convert from unsigned to signed 89 implicit array or structure conversions. 107 The conversions in the table above are done only as indicated by other 121 then the conversions from section 4.1.10 "Implicit Conversions" are 126 do not match, the conversions from Section &4.1.10 "Implicit 133 Boolean. Either the operands' types must match, or the conversions 176 the implicit conversions in section 4.1.10 (Implicit Conversions) will 183 If implicit conversions can be used to find more than one matching 185 match, the conversions between calling argument and formal parameter [all …]
|
/third_party/boost/libs/python/doc/ |
D | internals.rst | 97 the way class converters are, with no explicit conversions 135 C++->Python calls and explicit ``object()`` conversions). The 145 moment), it makes sense that to-python conversions can be 154 Other conversions, like by-reference conversions, are only 158 converter to be used. These conversions are never registered 168 and "argument" conversions, and I forget exactly what that is. 172 All lvalue conversions are also registered in a type's rvalue
|
/third_party/boost/libs/lexical_cast/doc/ |
D | lexical_cast.qbk | 23 The standard C and C++ libraries offer a number of facilities for performing such conversions. Howe… 33 …conversions direct use of `stringstream` can be either clumsy (with the introduction of extra loca… 35 …conversions to and from arbitrary types when they are represented as text. The simplification it o… 112 [important Many compilers and runtime libraries fail to make conversions using new Unicode characte… 121 … required over conversions, `std::stringstream` and `std::wstringstream` offer a more appropriate … 136 `boost::lexical_cast` remains the main interface for lexical conversions. It must be used by defaul… 209 the rules of `scanf` for conversions. And in the C99 standard for unsigned input value minus sign i… 244 …* Fix some issues with `boost::int128_type` and `boost::uint128_type` conversions. Notify user at … 245 …ic_limits` are not specialized for 128bit types and `boost::lexical_cast` can not make conversions. 264 …memory usage for `boost::array<character_type, N>` and `std::array<character_type, N>` conversions. [all …]
|
/third_party/libsoup/tests/ |
D | date-test.c | 243 static const DateConversion conversions[] = { variable 402 for (i = 0; i < G_N_ELEMENTS (conversions); i++) { in main() 403 path = g_strdup_printf ("/date/conversions/%s", conversions[i].source); in main() 404 g_test_add_data_func (path, &conversions[i], check_conversion); in main()
|
/third_party/node/deps/npm/node_modules/extsprintf/ |
D | README.md | 14 * conversions for strings, decimal integers, and floats (numbers). 21 Besides the usual POSIX conversions, this implementation supports:
|
/third_party/boost/libs/logic/test/compile-fail/ |
D | implicit.cpp | 19 #error in c++03 explicit conversions are allowed in main()
|
/third_party/ffmpeg/doc/ |
D | libswresample.texi | 19 Specifically, this library performs the following conversions: 43 Various other audio conversions (e.g. stretching and padding) are
|
/third_party/mingw-w64/mingw-w64-crt/gdtoa/ |
D | README | 31 The core conversion routines are strtodg for decimal -> binary conversions 32 and gdtoa for binary -> decimal conversions. These routines operate 58 For decimal -> binary conversions, there are three families of 137 (f = strtod(s,se)) is more efficient for some conversions than, say, 152 For some conversions this variant of strtod is less efficient than the 177 For binary -> decimal conversions, I've provided just one family 194 style and conversions with direction of rounding specified (so that, if 200 For an example of more general conversions based on dtoa(), see 235 conversion of very long strings) for conversions to and from double 237 or for conversions to extended or quad, it may be appropriate to [all …]
|
/third_party/json/doc/mkdocs/docs/features/ |
D | enum_conversion.md | 45 Just as in [Arbitrary Type Conversions](#arbitrary-types-conversions) above, 48 - It MUST be available (e.g., proper headers must be included) everywhere you use the conversions.
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlists/ |
D | gles2-master-PASS.txt | 3269 dEQP-GLES2.functional.shaders.conversions.matrix_combine.bool_bool_bool_bool_to_mat2_fragment 3270 dEQP-GLES2.functional.shaders.conversions.matrix_combine.bool_bool_bool_bool_to_mat2_vertex 3271 dEQP-GLES2.functional.shaders.conversions.matrix_combine.bool_bvec2_int_vec4_bool_to_mat3_fragment 3272 dEQP-GLES2.functional.shaders.conversions.matrix_combine.bool_float_int_bool_to_mat2_fragment 3273 dEQP-GLES2.functional.shaders.conversions.matrix_combine.bool_float_int_vec2_bool_bvec2_float_to_ma… 3274 dEQP-GLES2.functional.shaders.conversions.matrix_combine.bool_float_ivec2_to_mat2_fragment 3275 dEQP-GLES2.functional.shaders.conversions.matrix_combine.bvec2_bvec2_to_mat2_fragment 3276 dEQP-GLES2.functional.shaders.conversions.matrix_combine.bvec2_bvec2_to_mat2_vertex 3277 dEQP-GLES2.functional.shaders.conversions.matrix_combine.bvec3_float_to_mat2_fragment 3278 dEQP-GLES2.functional.shaders.conversions.matrix_combine.bvec3_float_to_mat2_vertex [all …]
|
D | gles2-master.txt | 674 dEQP-GLES2.functional.shaders.conversions.scalar_to_scalar.float_to_float_vertex 675 dEQP-GLES2.functional.shaders.conversions.scalar_to_scalar.float_to_float_fragment 676 dEQP-GLES2.functional.shaders.conversions.scalar_to_scalar.float_to_int_vertex 677 dEQP-GLES2.functional.shaders.conversions.scalar_to_scalar.float_to_int_fragment 678 dEQP-GLES2.functional.shaders.conversions.scalar_to_scalar.float_to_bool_vertex 679 dEQP-GLES2.functional.shaders.conversions.scalar_to_scalar.float_to_bool_fragment 680 dEQP-GLES2.functional.shaders.conversions.scalar_to_scalar.int_to_float_fragment 681 dEQP-GLES2.functional.shaders.conversions.scalar_to_scalar.int_to_int_fragment 682 dEQP-GLES2.functional.shaders.conversions.scalar_to_scalar.int_to_bool_vertex 683 dEQP-GLES2.functional.shaders.conversions.scalar_to_scalar.int_to_bool_fragment [all …]
|
/third_party/boost/libs/locale/doc/ |
D | conversions.txt | 11 \page conversions Text Conversions 14 upper, lower and \ref term_title_case "title case" conversions, \ref term_case_folding "case foldin… 42 …n operate over an entire string instead of performing incorrect character-by-character conversions.
|