/third_party/abseil-cpp/absl/copts/ |
D | GENERATED_copts.bzl | 10 "-Wno-conversion", 21 "-Wno-float-conversion", 39 "-Wbitfield-enum-conversion", 40 "-Wbool-conversion", 41 "-Wconstant-conversion", 42 "-Wenum-conversion", 43 "-Wint-conversion", 44 "-Wliteral-conversion", 45 "-Wnon-literal-null-conversion", 46 "-Wnull-conversion", [all …]
|
D | GENERATED_AbseilCopts.cmake | 9 "-Wno-conversion" 20 "-Wno-float-conversion" 38 "-Wbitfield-enum-conversion" 39 "-Wbool-conversion" 40 "-Wconstant-conversion" 41 "-Wenum-conversion" 42 "-Wint-conversion" 43 "-Wliteral-conversion" 44 "-Wnon-literal-null-conversion" 45 "-Wnull-conversion" [all …]
|
D | configure_copts.gni | 21 "-Wno-conversion", 32 "-Wno-float-conversion", 50 "-Wbitfield-enum-conversion", 51 "-Wbool-conversion", 52 "-Wconstant-conversion", 53 "-Wenum-conversion", 54 "-Wint-conversion", 55 "-Wliteral-conversion", 56 "-Wnon-literal-null-conversion", 57 "-Wnull-conversion", [all …]
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlists/vk-default/ |
D | ycbcr.txt | 4256 dEQP-VK.ycbcr.conversion.r4g4b4a4_unorm_pack16.rgb_identity.linear_tiling_linear 4257 dEQP-VK.ycbcr.conversion.r4g4b4a4_unorm_pack16.rgb_identity.linear_tiling_linear_binding_7 4258 dEQP-VK.ycbcr.conversion.r4g4b4a4_unorm_pack16.rgb_identity.linear_tiling_linear_binding_15 4259 dEQP-VK.ycbcr.conversion.r4g4b4a4_unorm_pack16.rgb_identity.linear_tiling_linear_binding_31 4260 dEQP-VK.ycbcr.conversion.r4g4b4a4_unorm_pack16.rgb_identity.linear_tiling_optimal 4261 dEQP-VK.ycbcr.conversion.r4g4b4a4_unorm_pack16.rgb_identity.linear_tiling_optimal_binding_7 4262 dEQP-VK.ycbcr.conversion.r4g4b4a4_unorm_pack16.rgb_identity.linear_tiling_optimal_binding_15 4263 dEQP-VK.ycbcr.conversion.r4g4b4a4_unorm_pack16.rgb_identity.linear_tiling_optimal_binding_31 4264 dEQP-VK.ycbcr.conversion.r4g4b4a4_unorm_pack16.rgb_identity.nearest_tiling_linear 4265 dEQP-VK.ycbcr.conversion.r4g4b4a4_unorm_pack16.rgb_identity.nearest_tiling_linear_binding_7 [all …]
|
/third_party/boost/libs/conversion/ |
D | README.md | 1 # [Boost.Conversion](http://boost.org/libs/conversion) 8 …conversion.svg?branch=develop)](https://travis-ci.org/apolukhin/conversion) [](https://travis-ci.org/apolukhin/conversion) [; 706 // No conversion needed: 847 IndexConversionBufferMtl *conversion = idxBuffer->getIndexConversionBuffer( 850 // Has the content of the buffer has changed since last conversion? 851 if (!conversion->dirty) 854 *idxBufferOut = conversion->convertedBuffer; 855 *idxBufferOffsetOut = conversion->convertedOffset + alignedOffset; 864 ANGLE_TRY(StreamIndexData(contextMtl, &conversion->data, 867 &conversion->convertedBuffer, &conversion->convertedOffset)); 872 conversion)); [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/ |
D | BUILD.gn | 132 # TODO(crbug.com/588506): Explicitly enable conversion warnings. 133 "-Wbool-conversion", 134 "-Wconstant-conversion", 135 "-Wenum-conversion", 136 "-Wint-conversion", 137 "-Wliteral-conversion", 138 "-Wnon-literal-null-conversion", 139 "-Wnull-conversion", 140 "-Wobjc-literal-conversion", 141 "-Wno-sign-conversion", [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | ConstantUnion.cpp | 293 ImplicitTypeConversion conversion = GetConversion(constant.type, type); in operator ==() local 294 if (conversion == ImplicitTypeConversion::Same) in operator ==() 312 else if (conversion == ImplicitTypeConversion::Invalid) in operator ==() 355 ImplicitTypeConversion conversion = GetConversion(constant.type, type); in operator >() local 356 if (conversion == ImplicitTypeConversion::Same) in operator >() 372 ASSERT(conversion != ImplicitTypeConversion::Invalid); in operator >() 379 ImplicitTypeConversion conversion = GetConversion(constant.type, type); in operator <() local 380 if (conversion == ImplicitTypeConversion::Same) in operator <() 396 ASSERT(conversion != ImplicitTypeConversion::Invalid); in operator <() 409 ImplicitTypeConversion conversion = GetConversion(lhs.type, rhs.type); in add() local [all …]
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | ConstantUnion.cpp | 297 ImplicitTypeConversion conversion = GetConversion(constant.type, type); in operator ==() local 298 if (conversion == ImplicitTypeConversion::Same) in operator ==() 316 else if (conversion == ImplicitTypeConversion::Invalid) in operator ==() 359 ImplicitTypeConversion conversion = GetConversion(constant.type, type); in operator >() local 360 if (conversion == ImplicitTypeConversion::Same) in operator >() 376 ASSERT(conversion != ImplicitTypeConversion::Invalid); in operator >() 383 ImplicitTypeConversion conversion = GetConversion(constant.type, type); in operator <() local 384 if (conversion == ImplicitTypeConversion::Same) in operator <() 400 ASSERT(conversion != ImplicitTypeConversion::Invalid); in operator <() 413 ImplicitTypeConversion conversion = GetConversion(lhs.type, rhs.type); in add() local [all …]
|
/third_party/boost/libs/gil/doc/design/ |
D | extending.rst | 24 accordingly. If you want color conversion support, you will have to 44 want to do conversion between your and existing channel types, you 47 Overloading color conversion 50 Suppose you want to provide your own color conversion. For example, 51 you may want to implement higher quality color conversion using color 52 profiles. Typically you may want to redefine color conversion only in 53 some instances and default to GIL's color conversion in all other 54 cases. Here is, for example, how to overload color conversion so that 55 color conversion to gray inverts the result but everything else 90 GIL color conversion functions take the color converter as an [all …]
|
/third_party/boost/libs/gil/doc/html/_sources/design/ |
D | extending.rst.txt | 24 accordingly. If you want color conversion support, you will have to 44 want to do conversion between your and existing channel types, you 47 Overloading color conversion 50 Suppose you want to provide your own color conversion. For example, 51 you may want to implement higher quality color conversion using color 52 profiles. Typically you may want to redefine color conversion only in 53 some instances and default to GIL's color conversion in all other 54 cases. Here is, for example, how to overload color conversion so that 55 color conversion to gray inverts the result but everything else 90 GIL color conversion functions take the color converter as an [all …]
|
/third_party/libnl/python/netlink/ |
D | util.py | 130 def convert_field(self, value, conversion): argument 131 if conversion == 'r': 133 elif conversion == 's': 135 elif conversion == 'k': 137 elif conversion == 'b': 139 elif conversion is None: 142 raise ValueError('Unknown converion specifier {0!s}'.format(conversion))
|
/third_party/typescript/tests/baselines/reference/ |
D | noImplicitSymbolToString.errors.txt | 1 tests/cases/compiler/noImplicitSymbolToString.ts(6,30): error TS2731: Implicit conversion of a 'sym… 4 tests/cases/compiler/noImplicitSymbolToString.ts(13,47): error TS2731: Implicit conversion of a 'sy… 5 tests/cases/compiler/noImplicitSymbolToString.ts(13,90): error TS2731: Implicit conversion of a 'sy… 16 !!! error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wr… 29 !!! error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wr… 31 !!! error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wr…
|
/third_party/python/Lib/ |
D | string.py | 174 for literal_text, field_name, format_spec, conversion in \ 209 obj = self.convert_field(obj, conversion) 238 def convert_field(self, value, conversion): argument 240 if conversion is None: 242 elif conversion == 's': 244 elif conversion == 'r': 246 elif conversion == 'a': 248 raise ValueError("Unknown conversion specifier {0!s}".format(conversion))
|
/third_party/boost/libs/core/doc/ |
D | explicit_operator_bool.qbk | 25 that expand to an explicit conversion operator to `bool`. For compilers not 26 supporting explicit conversion operators introduced in C++11 the macros expand 27 to a conversion operator that implements the 30 expand to a regular conversion operator to `bool`. 39 generated conversion operators will be implemented in terms of `operator!()` 41 `BOOST_CONSTEXPR_EXPLICIT_OPERATOR_BOOL()` the generated conversion operator
|
/third_party/glib/glib/gnulib/ |
D | vasnprintf.c | 1549 MAX_ROOM_NEEDED (const arguments *ap, size_t arg_index, FCHAR_T conversion, in MAX_ROOM_NEEDED() argument 1555 switch (conversion) in MAX_ROOM_NEEDED() 1912 if (dp->conversion == '%') in VASNPRINTF() 1928 if (dp->conversion == 'n') in VASNPRINTF() 1955 else if (dp->conversion == 'U') in VASNPRINTF() 2411 else if (dp->conversion == 's' in VASNPRINTF() 2930 else if ((dp->conversion == 'a' || dp->conversion == 'A') in VASNPRINTF() 3061 if (dp->conversion == 'A') in VASNPRINTF() 3092 if (dp->conversion == 'A') in VASNPRINTF() 3142 *p++ = dp->conversion - 'A' + 'X'; in VASNPRINTF() [all …]
|
/third_party/python/Objects/stringlib/ |
D | unicode_format.h | 553 int *format_spec_needs_expanding, Py_UCS4 *conversion) in parse_field() argument 562 *conversion = '\0'; in parse_field() 604 *conversion = PyUnicode_READ_CHAR(str->str, str->start++); in parse_field() 675 SubString *format_spec, Py_UCS4 *conversion, in MarkupIterator_next() argument 688 *conversion = '\0'; in MarkupIterator_next() 755 format_spec_needs_expanding, conversion)) in MarkupIterator_next() 763 do_conversion(PyObject *obj, Py_UCS4 conversion) in do_conversion() argument 767 switch (conversion) { in do_conversion() 775 if (conversion > 32 && conversion < 127) { in do_conversion() 781 (char)conversion); in do_conversion() [all …]
|