/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: 20; } 16 >module.exports : { member: number; additional: 20; } 17 >module : { exports: { member: number; additional: 20; }; } 18 >exports : { member: number; additional: 20; } 22 module.exports.additional = 20; 23 >module.exports.additional = 20 : 20 24 >module.exports.additional : 20 25 >module.exports : { member: number; additional: 20; } 26 >module : { exports: { member: number; additional: 20; }; } 27 >exports : { member: number; additional: 20; } [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]; 18 var additional = []; variable 21 additional = __spreadArray(__spreadArray([], additional, true), [subcomponent], false);
|
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 | 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))
|
D | jsDeclarationsExportAssignedClassInstance3.js | 9 module.exports.additional = 20; 20 module.exports.additional = 20; 25 export const additional: 20; constant
|
D | ts-expect-error.symbols | 2 // @ts-expect-error additional commenting 7 @ts-expect-error additional commenting */ 11 // @ts-expect-error additional commenting 15 /* @ts-expect-error additional commenting */
|
D | mergedInheritedClassInterface.js | 13 additional: number; 35 child.additional; 96 child.additional;
|
D | ts-expect-error.types | 2 // @ts-expect-error additional commenting 8 @ts-expect-error additional commenting */ 13 // @ts-expect-error additional commenting 18 /* @ts-expect-error additional commenting */
|
/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/typescript/tests/ts_extra_tests/test_ts_cases/4.5/private_field_presence_checks/ |
D | private_field_presence_checks_1.ts | 31 combine(additional: any) { 32 return additional && 33 typeof additional === "object" && 34 #type in additional&& 35 this.#type === additional.#type;
|
/third_party/mbedtls/library/ |
D | hmac_drbg.c | 56 const unsigned char *additional, in mbedtls_hmac_drbg_update() argument 60 unsigned char rounds = (additional != NULL && add_len != 0) ? 2 : 1; in mbedtls_hmac_drbg_update() 80 additional, add_len)) != 0) { in mbedtls_hmac_drbg_update() 147 const unsigned char *additional, size_t len, in hmac_drbg_reseed_core() argument 200 if (additional != NULL && len != 0) { in hmac_drbg_reseed_core() 201 memcpy(seed + seedlen, additional, len); in hmac_drbg_reseed_core() 223 const unsigned char *additional, size_t len) in mbedtls_hmac_drbg_reseed() argument 225 return hmac_drbg_reseed_core(ctx, additional, len, 0); in mbedtls_hmac_drbg_reseed() 320 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 | 307 const unsigned char *additional, in mbedtls_ctr_drbg_update() argument 317 if ((ret = block_cipher_df(add_input, additional, add_len)) != 0) { in mbedtls_ctr_drbg_update() 343 const unsigned char *additional, in mbedtls_ctr_drbg_reseed_internal() argument 378 if (additional != NULL && len != 0) { in mbedtls_ctr_drbg_reseed_internal() 379 memcpy(seed + seedlen, additional, len); in mbedtls_ctr_drbg_reseed_internal() 400 const unsigned char *additional, size_t len) in mbedtls_ctr_drbg_reseed() argument 402 return mbedtls_ctr_drbg_reseed_internal(ctx, additional, len, 0); in mbedtls_ctr_drbg_reseed() 496 const unsigned char *additional, size_t add_len) in mbedtls_ctr_drbg_random_with_add() argument 518 if ((ret = mbedtls_ctr_drbg_reseed(ctx, additional, add_len)) != 0) { in mbedtls_ctr_drbg_random_with_add() 525 if ((ret = block_cipher_df(add_input, additional, add_len)) != 0) { in mbedtls_ctr_drbg_random_with_add()
|
/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. */ 120 /* Version 1.2.12 additional entry points. */
|
/third_party/typescript/tests/cases/compiler/ |
D | selfReferencingSpreadInLoop.ts | 2 let additional = []; variable 4 additional = [...additional, subcomponent]; constant
|
/third_party/mesa3d/docs/drivers/ |
D | zink.rst | 65 For OpenGL 3.0 support, the following additional requirements must be 87 For OpenGL 3.1 support, the following additional ``VkPhysicalDeviceLimits`` 95 For OpenGL 3.2 support, the following additional requirements must be 111 For OpenGL 3.3 support, the following additional requirements must be 125 For OpenGL 4.0 support, the following additional requirements must be 147 For OpenGL 4.1 support, the following additional requirements must be 162 For OpenGL 4.2 support, the following additional requirements must be 198 For OpenGL 4.3 support, the following additional requirements must be 218 For OpenGL 4.4 support, the following additional requirements must be 232 For OpenGL 4.5 support, the following additional ``VkPhysicalDeviceFeatures`` [all …]
|
/third_party/rust/crates/cxx/src/symbols/ |
D | rust_string.rs | 104 unsafe extern "C" fn string_reserve_additional(this: &mut String, additional: usize) { in string_reserve_additional() 105 this.reserve(additional); in string_reserve_additional() 111 let additional = new_cap - this.len(); in string_reserve_total() localVariable 112 this.reserve(additional); in string_reserve_total()
|
/third_party/mbedtls/include/mbedtls/ |
D | hmac_drbg.h | 298 const unsigned char *additional, size_t add_len); 325 const unsigned char *additional, size_t len); 360 const unsigned char *additional,
|
D | ctr_drbg.h | 443 const unsigned char *additional, size_t len); 466 const unsigned char *additional, 502 const unsigned char *additional, size_t add_len);
|
/third_party/skia/src/sksl/dsl/priv/ |
D | DSLWriter.cpp | 98 void DSLWriter::AddVarDeclaration(DSLStatement& existing, DSLVar& additional) { in AddVarDeclaration() argument 102 block.children().push_back(Declare(additional).release()); in AddVarDeclaration() 107 stmts.push_back(Declare(additional).release()); in AddVarDeclaration() 111 existing.fStatement = Declare(additional).release(); in AddVarDeclaration()
|
/third_party/mbedtls/docs/proposed/ |
D | psa-driver-integration-guide.md | 6 This document describes how to build Mbed TLS with additional cryptoprocessor drivers that follow t… 12 The PSA cryptography driver interface provides a way to build Mbed TLS with additional code that im… 16 …in the build. The driver code can either be provided in binary form as additional object file to l… 45 <!-- TODO: what about additional include files? -->
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_ctr_drbg.function | 107 unsigned char additional[512]; 111 memset(additional, 0, sizeof(additional)); 115 additional, 16) == 119 additional, MBEDTLS_CTR_DRBG_MAX_INPUT + 1) == 122 TEST_ASSERT(mbedtls_ctr_drbg_reseed(&ctx, additional, 127 TEST_ASSERT(mbedtls_ctr_drbg_reseed(&ctx, additional,
|