/third_party/typescript/tests/baselines/reference/ |
D | propertyAssignmentUseParentType2.symbols | 12 export const duplicated = () => true 13 >duplicated : Symbol(duplicated, Decl(propertyAssignmentUseParentType2.js, 5, 12), Decl(propertyAss… 16 duplicated.nuo = 789 17 >duplicated.nuo : Symbol(nuo, Decl(propertyAssignmentUseParentType2.js, 4, 25)) 18 >duplicated : Symbol(duplicated, Decl(propertyAssignmentUseParentType2.js, 5, 12), Decl(propertyAss…
|
D | propertyAssignmentUseParentType2.types | 16 export const duplicated = () => true 17 >duplicated : { (): boolean; nuo: 789; } 22 duplicated.nuo = 789 23 >duplicated.nuo = 789 : 789 24 >duplicated.nuo : 789 25 >duplicated : { (): boolean; nuo: 789; }
|
D | propertyAssignmentUseParentType2.errors.txt | 12 export const duplicated = () => true 14 duplicated.nuo = 789
|
D | objectSpreadNegative.js | 29 let duplicated = { b: 'bad', ...o, b: 'bad', ...o2, b: 'bad' } variable 113 var duplicated = __assign(__assign(__assign(__assign({ b: 'bad' }, o), { b: 'bad' }), o2), { b: 'ba…
|
D | library-reference-4.types | 6 // Secondary references may be duplicated if they agree in content
|
D | library-reference-5.types | 6 // Secondary references may not be duplicated if they disagree in content
|
D | library-reference-4.symbols | 6 // Secondary references may be duplicated if they agree in content
|
D | library-reference-5.symbols | 6 // Secondary references may not be duplicated if they disagree in content
|
D | propertyAccessExpressionInnerComments.types | 32 /* Existing issue: the "2" comments below are duplicated and "3"s are missing */
|
D | objectSpreadNegative.symbols | 80 let duplicated = { b: 'bad', ...o, b: 'bad', ...o2, b: 'bad' } 81 >duplicated : Symbol(duplicated, Decl(objectSpreadNegative.ts, 27, 3))
|
/third_party/typescript/tests/cases/conformance/salsa/ |
D | propertyAssignmentUseParentType2.ts | 11 export const duplicated = () => true constant 13 duplicated.nuo = 789
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | Internal.java | 350 final ByteBuffer duplicated = bytes.duplicate(); in hashCodeByteBuffer() local 351 duplicated.clear(); in hashCodeByteBuffer() 353 while (duplicated.remaining() > 0) { in hashCodeByteBuffer() 355 duplicated.remaining() <= bufferSize ? duplicated.remaining() : bufferSize; in hashCodeByteBuffer() 356 duplicated.get(buffer, 0, length); in hashCodeByteBuffer()
|
D | CodedOutputStream.java | 1264 ByteBuffer duplicated = value.duplicate(); in writeRawBytes() local 1265 duplicated.clear(); in writeRawBytes() 1266 write(duplicated); in writeRawBytes() 1707 ByteBuffer duplicated = value.duplicate(); in writeRawBytes() local 1708 duplicated.clear(); in writeRawBytes() 1709 write(duplicated); in writeRawBytes() 2037 ByteBuffer duplicated = value.duplicate(); in writeRawBytes() local 2038 duplicated.clear(); in writeRawBytes() 2039 write(duplicated); in writeRawBytes() 2501 ByteBuffer duplicated = value.duplicate(); in writeRawBytes() local [all …]
|
/third_party/mesa3d/src/amd/common/ |
D | ac_nir_opt_outputs.c | 47 bool duplicated; member 135 if (prev->constant || prev->duplicated) in ac_eliminate_duplicated_output() 183 cur->duplicated = true; in ac_eliminate_duplicated_output()
|
/third_party/flutter/engine/flutter/fml/platform/win/ |
D | file_win.cc | 235 HANDLE duplicated = INVALID_HANDLE_VALUE; in Duplicate() local 241 &duplicated, // target handle in Duplicate() 249 return fml::UniqueFD{duplicated}; in Duplicate()
|
/third_party/skia/third_party/externals/egl-registry/extensions/KHR/ |
D | EGL_KHR_stream_cross_process_fd.txt | 55 duplicated into another process so that the EGLStream producer can 64 3) Create an EGLStreamKHR from the duplicated file descriptor in 127 descriptors duplicated from it should only be used in a call to 151 be duplicated into a different process address space using system 164 file descriptor duplicated from such a file descriptor (possibly 172 <file_descriptor> was duplicated. 200 descriptors duplicated from it once 417 EGLStream that has been duplicated into another process will
|
/third_party/EGL/extensions/KHR/ |
D | EGL_KHR_stream_cross_process_fd.txt | 55 duplicated into another process so that the EGLStream producer can 64 3) Create an EGLStreamKHR from the duplicated file descriptor in 127 descriptors duplicated from it should only be used in a call to 151 be duplicated into a different process address space using system 164 file descriptor duplicated from such a file descriptor (possibly 172 <file_descriptor> was duplicated. 200 descriptors duplicated from it once 417 EGLStream that has been duplicated into another process will
|
/third_party/ntfs-3g/libntfs-3g/ |
D | xattrs.c | 361 BOOL duplicated; in ntfs_read_xattr_mapping() local 377 duplicated = FALSE; in ntfs_read_xattr_mapping() 381 duplicated = TRUE; in ntfs_read_xattr_mapping() 382 if (duplicated) { in ntfs_read_xattr_mapping()
|
/third_party/openssl/doc/man3/ |
D | X509_EXTENSION_set_object.pod | 31 B<obj> pointer is duplicated internally so B<obj> should be freed up after use. 37 B<data> pointer is duplicated internally.
|
D | EVP_PKEY_CTX_new.pod | 37 of the arguments are duplicated, so they must remain unchanged for the 44 arguments are duplicated, so they must remain unchanged for the lifetime of the
|
/third_party/flutter/flutter/examples/stocks/lib/i18n/ |
D | stock_messages_es.dart | 3 // messages from the main program should be duplicated here with the same
|
D | stock_messages_en.dart | 3 // messages from the main program should be duplicated here with the same
|
/third_party/openssl/apps/lib/ |
D | opt.c | 177 int duplicated, i; in opt_init() local 208 duplicated = next->retval != OPT_DUP in opt_init() 210 if (duplicated) { in opt_init() 213 OPENSSL_assert(!duplicated); in opt_init()
|
/third_party/typescript/tests/cases/conformance/types/spread/ |
D | objectSpreadNegative.ts | 30 let duplicated = { b: 'bad', ...o, b: 'bad', ...o2, b: 'bad' } variable
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/ |
D | angle_test_instantiate_apple.mm | 19 // NOTE(hqle): This code is currently duplicated with rx::IsMetalDisplayAvailable().
|