Home
last modified time | relevance | path

Searched refs:additional (Results 1 – 25 of 3148) sorted by relevance

12345678910>>...126

/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/
Dno-unused-vars.test.ts944 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/
DselfReferencingSpreadInLoop.types2 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[]
DjsDeclarationsExportAssignedClassInstance3.types15 >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 …]
DselfReferencingSpreadInLoop.symbols2 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))
DselfReferencingSpreadInLoop.errors.txt1 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.
DselfReferencingSpreadInLoop.js2 let additional = []; variable
4 additional = [...additional, subcomponent];
14 var additional = []; variable
17 additional = __spreadArray(__spreadArray([], additional), [subcomponent]);
DjsDeclarationsExportAssignedClassInstance3.symbols18 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))
DmergedInheritedClassInterface.types21 additional: number;
22 >additional : number
68 child.additional;
69 >child.additional : number
71 >additional : number
DjsDeclarationsExportAssignedClassInstance3.js9 module.exports.additional = 20;
20 module.exports.additional = 20;
25 export const additional: number; constant
DmergedInheritedClassInterface.symbols26 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__.py40 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/
Dhmac_drbg.c63 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 …]
Dctr_drbg.c316 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/
DselfReferencingSpreadInLoop.ts2 let additional = []; variable
4 additional = [...additional, subcomponent]; constant
/third_party/boost/tools/build/doc/src/
Dfragments.adoc14 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/
Dzink.rst61 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/
Dimplementation.qbk28 * 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/
Dbndsrc52 /* 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/
Dbndsrc52 /* 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/
Dbndsrc52 /* 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/
Drestrict-template-expressions.md50 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/
Dcommon.xsl51 <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/
Dhmac_drbg.h299 const unsigned char *additional, size_t add_len );
326 const unsigned char *additional, size_t len );
361 const unsigned char *additional,
Dctr_drbg.h444 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/
Dcomo.jam31 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.

12345678910>>...126