/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/ |
D | no-unused-vars.test.ts | 944 additional: '', 963 additional: '', 982 additional: '', 1002 additional: '', 1027 additional: '', 1051 additional: '', 1075 additional: '', 1096 additional: '', 1117 additional: '', 1138 additional: '', [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | selfReferencingSpreadInLoop.types | 2 let additional = []; 3 >additional : any[] 13 additional = [...additional, subcomponent]; 14 >additional = [...additional, subcomponent] : any[] 15 >additional : any[] 16 >[...additional, subcomponent] : any[] 17 >...additional : any 18 >additional : any[]
|
D | jsDeclarationsExportAssignedClassInstance3.types | 15 >module.exports = new Foo() : { member: number; additional: number; } 16 >module.exports : { member: number; additional: number; } 17 >module : { exports: { member: number; additional: number; }; } 18 >exports : { member: number; additional: number; } 22 module.exports.additional = 20; 23 >module.exports.additional = 20 : 20 24 >module.exports.additional : number 25 >module.exports : { member: number; additional: number; } 26 >module : { exports: { member: number; additional: number; }; } 27 >exports : { member: number; additional: number; } [all …]
|
D | selfReferencingSpreadInLoop.symbols | 2 let additional = []; 3 >additional : Symbol(additional, Decl(selfReferencingSpreadInLoop.ts, 0, 3)) 8 additional = [...additional, subcomponent]; 9 >additional : Symbol(additional, Decl(selfReferencingSpreadInLoop.ts, 0, 3)) 10 >additional : Symbol(additional, Decl(selfReferencingSpreadInLoop.ts, 0, 3))
|
D | selfReferencingSpreadInLoop.errors.txt | 1 tests/cases/compiler/selfReferencingSpreadInLoop.ts(1,5): error TS7034: Variable 'additional' impli… 2 tests/cases/compiler/selfReferencingSpreadInLoop.ts(3,22): error TS7005: Variable 'additional' impl… 6 let additional = []; 8 !!! error TS7034: Variable 'additional' implicitly has type 'any[]' in some locations where its typ… 10 additional = [...additional, subcomponent]; 12 !!! error TS7005: Variable 'additional' implicitly has an 'any[]' type.
|
D | selfReferencingSpreadInLoop.js | 2 let additional = []; variable 4 additional = [...additional, subcomponent]; 14 var additional = []; variable 17 additional = __spreadArray(__spreadArray([], additional), [subcomponent]);
|
D | jsDeclarationsExportAssignedClassInstance3.symbols | 18 module.exports.additional = 20; 19 >module.exports.additional : Symbol(additional, Decl(index.js, 5, 27)) 20 >module.exports : Symbol(additional, Decl(index.js, 5, 27)) 23 >additional : Symbol(additional, Decl(index.js, 5, 27))
|
D | mergedInheritedClassInterface.types | 21 additional: number; 22 >additional : number 68 child.additional; 69 >child.additional : number 71 >additional : number
|
D | jsDeclarationsExportAssignedClassInstance3.js | 9 module.exports.additional = 20; 20 module.exports.additional = 20; 25 export const additional: number; constant
|
D | mergedInheritedClassInterface.symbols | 26 additional: number; 27 >additional : Symbol(Child.additional, Decl(mergedInheritedClassInterface.ts, 10, 39)) 77 child.additional; 78 >child.additional : Symbol(Child.additional, Decl(mergedInheritedClassInterface.ts, 10, 39)) 80 >additional : Symbol(Child.additional, Decl(mergedInheritedClassInterface.ts, 10, 39))
|
/third_party/node/test/testpy/ |
D | __init__.py | 40 def __init__(self, path, file, arch, mode, context, config, additional=None): argument 46 if additional is not None: 47 self.additional_flags = additional 97 def __init__(self, context, root, section, additional=None): argument 99 if additional is not None: 100 self.additional_flags = additional 122 def __init__(self, context, root, section, additional=None): argument 124 additional) 134 def __init__(self, context, root, section, additional=None): argument 135 super(AddonTestConfiguration, self).__init__(context, root, section, additional) [all …]
|
/third_party/mbedtls/library/ |
D | hmac_drbg.c | 63 const unsigned char *additional, in mbedtls_hmac_drbg_update() argument 67 unsigned char rounds = ( additional != NULL && add_len != 0 ) ? 2 : 1; in mbedtls_hmac_drbg_update() 86 additional, add_len ) ) != 0 ) in mbedtls_hmac_drbg_update() 145 const unsigned char *additional, size_t len, in hmac_drbg_reseed_core() argument 201 if( additional != NULL && len != 0 ) in hmac_drbg_reseed_core() 203 memcpy( seed + seedlen, additional, len ); in hmac_drbg_reseed_core() 224 const unsigned char *additional, size_t len ) in mbedtls_hmac_drbg_reseed() argument 226 return( hmac_drbg_reseed_core( ctx, additional, len, 0 ) ); in mbedtls_hmac_drbg_reseed() 321 const unsigned char *additional, size_t add_len ) in mbedtls_hmac_drbg_random_with_add() argument 342 if( ( ret = mbedtls_hmac_drbg_reseed( ctx, additional, add_len ) ) != 0 ) in mbedtls_hmac_drbg_random_with_add() [all …]
|
D | ctr_drbg.c | 316 const unsigned char *additional, in mbedtls_ctr_drbg_update() argument 325 if( ( ret = block_cipher_df( add_input, additional, add_len ) ) != 0 ) in mbedtls_ctr_drbg_update() 349 const unsigned char *additional, in mbedtls_ctr_drbg_reseed_internal() argument 384 if( additional != NULL && len != 0 ) in mbedtls_ctr_drbg_reseed_internal() 386 memcpy( seed + seedlen, additional, len ); in mbedtls_ctr_drbg_reseed_internal() 405 const unsigned char *additional, size_t len ) in mbedtls_ctr_drbg_reseed() argument 407 return( mbedtls_ctr_drbg_reseed_internal( ctx, additional, len, 0 ) ); in mbedtls_ctr_drbg_reseed() 503 const unsigned char *additional, size_t add_len ) in mbedtls_ctr_drbg_random_with_add() argument 524 if( ( ret = mbedtls_ctr_drbg_reseed( ctx, additional, add_len ) ) != 0 ) in mbedtls_ctr_drbg_random_with_add() 533 if( ( ret = block_cipher_df( add_input, additional, add_len ) ) != 0 ) in mbedtls_ctr_drbg_random_with_add()
|
/third_party/typescript/tests/cases/compiler/ |
D | selfReferencingSpreadInLoop.ts | 2 let additional = []; variable 4 additional = [...additional, subcomponent]; constant
|
/third_party/boost/tools/build/doc/src/ |
D | fragments.adoc | 14 Specifies additional compiler flags that will be used when compiling C 19 Specifies additional compiler flags that will be used when compiling {CPP} 24 Specifies additional compiler flags that will be used when compiling 29 Specifies additional command line options that will be passed to the
|
/third_party/mesa3d/docs/drivers/ |
D | zink.rst | 61 For OpenGL 3.0 support, the following additional requirements needs to be 77 For OpenGL 3.1 support, the following additional ``VkPhysicalDeviceLimits`` 85 For OpenGL 3.2 support, the following additional ``VkPhysicalDeviceFeatures`` 96 For OpenGL 3.3 support, the following additional requirements needs to be 110 For OpenGL 4.0 support, the following additional requirements needs to be 132 For OpenGL 4.1 support, the following additional ``VkPhysicalDeviceLimits`` 141 For OpenGL 4.2 support, the following additional requirements needs to be 174 For OpenGL 4.3 support, the following additional requirements needs to be 195 For OpenGL 4.4 support, the following additional requirements needs to be 209 For OpenGL 4.5 support, the following additional ``VkPhysicalDeviceFeatures`` [all …]
|
/third_party/boost/libs/asio/doc/overview/ |
D | implementation.qbk | 28 * An additional thread per `io_context` is used to emulate asynchronous host 48 * An additional thread per `io_context` is used to emulate asynchronous host 69 * An additional thread per `io_context` is used to emulate asynchronous host 91 * An additional thread per `io_context` is used to emulate asynchronous host 112 * An additional thread per `io_context` is used to emulate asynchronous host 133 * An additional thread per `io_context` is used to emulate asynchronous host 155 * An additional thread per `io_context` is used to emulate asynchronous host 177 * An additional thread per `io_context` is used to emulate asynchronous host 199 * An additional thread per `io_context` is used to emulate asynchronous host 220 * An additional thread per `io_context` is used to emulate asynchronous host [all …]
|
/third_party/zlib/os400/ |
D | bndsrc | 52 /* Version 1.2.1 additional entry points. */ 67 /* Version 1.2.4 additional entry points. */ 92 /* Version 1.2.6 additional entry points. */ 100 /* Version 1.2.8 additional entry points. */ 107 /* Version 1.2.9 additional entry points. */
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/os400/ |
D | bndsrc | 52 /* Version 1.2.1 additional entry points. */ 67 /* Version 1.2.4 additional entry points. */ 92 /* Version 1.2.6 additional entry points. */ 100 /* Version 1.2.8 additional entry points. */ 107 /* Version 1.2.9 additional entry points. */
|
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/os400/ |
D | bndsrc | 52 /* Version 1.2.1 additional entry points. */ 67 /* Version 1.2.4 additional entry points. */ 92 /* Version 1.2.6 additional entry points. */ 100 /* Version 1.2.8 additional entry points. */ 107 /* Version 1.2.9 additional entry points. */
|
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/ |
D | restrict-template-expressions.md | 50 Examples of additional **correct** code for this rule with `{ allowNumber: true }`: 60 Examples of additional **correct** code for this rule with `{ allowBoolean: true }`: 70 Examples of additional **correct** code for this rule with `{ allowAny: true }`: 80 Examples of additional **correct** code for this rule with `{ allowNullish: true }`:
|
/third_party/boost/tools/docca/include/docca/ |
D | common.xsl | 51 <xsl:variable name="id-replacements" select="$additional-id-replacements, $base-id-replacements"/> 54 <xsl:variable name="additional-id-replacements" as="element(replace)*" select="()"/> 86 …<xsl:variable name="param-replacements" select="$additional-param-replacements, $base-param-replac… 89 <xsl:variable name="additional-param-replacements" as="element(replace)*" select="()"/> 98 …<xsl:variable name="type-replacements" select="$additional-type-replacements, $base-type-replaceme… 101 <xsl:variable name="additional-type-replacements" as="element(replace)*" select="()"/>
|
/third_party/mbedtls/include/mbedtls/ |
D | hmac_drbg.h | 299 const unsigned char *additional, size_t add_len ); 326 const unsigned char *additional, size_t len ); 361 const unsigned char *additional,
|
D | ctr_drbg.h | 444 const unsigned char *additional, size_t len ); 467 const unsigned char *additional, 503 const unsigned char *additional, size_t add_len );
|
/third_party/boost/tools/build/src/tools/ |
D | como.jam | 31 Specifies additional compiler flags that will be used when compiling C 35 Specifies additional compiler flags that will be used when compiling C++ 39 Specifies additional compiler flags that will be used when compiling both C 43 Specifies additional command line options that will be passed to the linker.
|