/third_party/typescript/tests/baselines/reference/ |
D | excessPropertyCheckWithNestedArrayIntersection.types | 32 >{ dataType: { fields: [{ key: 'bla', // should be OK: Not excess value: null, }],… 36 >{ fields: [{ key: 'bla', // should be OK: Not excess value: null, }], } : { field… 40 >[{ key: 'bla', // should be OK: Not excess value: null, }] : { key: string; value: nu… 41 >{ key: 'bla', // should be OK: Not excess value: null, } : { key: string; value: null… 43 key: 'bla', // should be OK: Not excess
|
D | excessPropertyCheckWithMultipleDiscriminants.types | 40 >{ type: "number", value: 10, multipleOf: 5, // excess property format: "what?"} : { ty… 50 multipleOf: 5, // excess property 73 // This has excess error because variant three is the only applicable case. 96 // This has no excess error because variant one and three are both applicable. 119 // This has excess error because variant two is the only applicable case
|
D | excessPropertyCheckWithMultipleDiscriminants.errors.txt | 39 multipleOf: 5, // excess property 49 // This has excess error because variant three is the only applicable case. 60 // This has no excess error because variant one and three are both applicable. 68 // This has excess error because variant two is the only applicable case
|
D | excessPropertyCheckWithMultipleDiscriminants.symbols | 68 multipleOf: 5, // excess property 87 // This has excess error because variant three is the only applicable case. 106 // This has no excess error because variant one and three are both applicable. 125 // This has excess error because variant two is the only applicable case
|
D | conditionalTypesExcessProperties.types | 20 sa = { test: 'hi', arg: a }; // not excess (but currently still not assignable) 29 sa = { test: 'bye', arg: a, arr: a } // excess
|
D | conditionalTypesExcessProperties.symbols | 27 sa = { test: 'hi', arg: a }; // not excess (but currently still not assignable) 33 sa = { test: 'bye', arg: a, arr: a } // excess
|
D | conditionalTypesExcessProperties.errors.txt | 15 sa = { test: 'hi', arg: a }; // not excess (but currently still not assignable) 19 sa = { test: 'bye', arg: a, arr: a } // excess
|
D | objectLiteralExcessProperties.types | 106 // No excess property checks on generic types 113 // No excess property checks on intersections involving generics 144 // No excess property checks when union includes 'object' type
|
D | excessPropertyCheckWithUnions.types | 106 // correctly error on excess property 'extra', even when ambiguous 221 // Nested excess property checks work with discriminated unions 240 >{ kind: "A", n: { a: "a", b: "b", // excess -- kind: "A" }} : { kind: "A"; … 248 >{ a: "a", b: "b", // excess -- kind: "A" } : { a: string; b: string; } 254 b: "b", // excess -- kind: "A"
|
D | objectLiteralExcessProperties.symbols | 100 // No excess property checks on generic types 106 // No excess property checks on intersections involving generics 131 // No excess property checks when union includes 'object' type
|
D | spreadExcessProperty.types | 17 const a1: A = { ...extra1 }; // spread should not give excess property errors
|
D | spreadExcessProperty.symbols | 13 const a1: A = { ...extra1 }; // spread should not give excess property errors
|
D | excessPropertyCheckWithNestedArrayIntersection.symbols | 47 key: 'bla', // should be OK: Not excess
|
D | checkJsxChildrenProperty15.errors.txt | 18 // Not OK (excess children)
|
D | checkJsxChildrenProperty15.types | 25 // Not OK (excess children)
|
D | intersectionPropertyCheck.types | 2 … a: { x: string } } & { c: number } = { a: { x: 'hello', y: 2 }, c: 5 }; // Nested excess property
|
/third_party/skia/src/gpu/ |
D | GrProgramDesc.h | 42 uint32_t excess = fBitsUsed - 32; in addBits() local 43 fCurValue = excess ? (val >> (numBits - excess)) : 0; in addBits() 44 fBitsUsed = excess; in addBits()
|
/third_party/ntfs-3g/ntfsprogs/ |
D | ntfscp.c | 432 s64 excess; in merge_run() local 440 excess = alctx->gathered_clusters + count in merge_run() 444 replace = excess > (alctx->rl[0].length in merge_run() 448 replace = (excess > alctx->rl[0].length) in merge_run() 455 excess = alctx->gathered_clusters + count in merge_run() 459 && (alctx->rl[drop].length <= excess)) { in merge_run() 460 excess -= alctx->rl[drop].length; in merge_run() 478 alctx->gathered_clusters = alctx->wanted_clusters + excess; in merge_run()
|
/third_party/node/deps/v8/src/bigint/ |
D | tostring.cc | 233 int excess = 0; in Finish() local 236 excess = static_cast<int>(out_ - out_start_); in Finish() 239 return excess; in Finish() 576 int excess = formatter.Finish(); in ToStringImpl() local 577 *out_length -= excess; in ToStringImpl()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_fs_linear_llvm.c | 436 LLVMValueRef excess = in llvmpipe_fs_variant_linear_llvm() local 467 lp_build_if(&ifstate, gallivm, LLVMBuildICmp(builder, LLVMIntNE, excess, in llvmpipe_fs_variant_linear_llvm() 492 lp_build_loop_end_cond(&loop_read, excess, in llvmpipe_fs_variant_linear_llvm() 513 lp_build_loop_end_cond(&loop_write, excess, in llvmpipe_fs_variant_linear_llvm()
|
/third_party/typescript/tests/cases/conformance/jsx/ |
D | checkJsxChildrenProperty15.tsx | 15 // Not OK (excess children)
|
/third_party/mesa3d/src/panfrost/bifrost/ |
D | bi_ra.c | 233 unsigned excess = count - 1; in bi_make_affinity() local 234 uint64_t mask = BITFIELD_MASK(excess); in bi_make_affinity() 235 clobbered |= mask << (64 - excess); in bi_make_affinity() 238 clobbered |= mask << (16 - excess); in bi_make_affinity()
|
/third_party/jerryscript/tools/runners/ |
D | run-benchmarks.sh | 49 run ubench/function-excess-args
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-shape-complex-arabic.cc | 542 hb_position_t excess = (n_copies + 1) * sign * w_repeating - sign * w_remaining; in apply_stch() local 543 if (excess > 0) in apply_stch() 544 extra_repeat_overlap = excess / (n_copies * n_repeating); in apply_stch()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fNegativeStateApiTests.cpp | 552 for (int excess = 0; excess <= 2; excess++) in init() 556 invalidUniformIndices.push_back(numActiveUniforms-1+excess); in init() 561 expectError(excess == 0 ? GL_NO_ERROR : GL_INVALID_VALUE); in init()
|