/third_party/typescript/tests/baselines/reference/ |
D | indexedAccessRetainsIndexSignature.symbols | 2 type Diff<T extends keyof any, U extends keyof any> = 3 >Diff : Symbol(Diff, Decl(indexedAccessRetainsIndexSignature.ts, 0, 0)) 16 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>> 23 >Diff : Symbol(Diff, Decl(indexedAccessRetainsIndexSignature.ts, 0, 0)) 27 type Omit1<U, K extends keyof U> = Pick<U, Diff<keyof U, K>>; 34 >Diff : Symbol(Diff, Decl(indexedAccessRetainsIndexSignature.ts, 0, 0)) 40 type Omit2<T, K extends keyof T> = {[P in Diff<keyof T, K>]: T[P]}; 46 >Diff : Symbol(Diff, Decl(indexedAccessRetainsIndexSignature.ts, 0, 0))
|
D | indexedAccessRetainsIndexSignature.types | 2 type Diff<T extends keyof any, U extends keyof any> = 3 >Diff : Diff<T, U> 8 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>> 11 type Omit1<U, K extends keyof U> = Pick<U, Diff<keyof U, K>>; 16 type Omit2<T, K extends keyof T> = {[P in Diff<keyof T, K>]: T[P]};
|
D | indexedAccessRetainsIndexSignature.js | 2 type Diff<T extends keyof any, U extends keyof any> = 4 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>> 5 type Omit1<U, K extends keyof U> = Pick<U, Diff<keyof U, K>>; 8 type Omit2<T, K extends keyof T> = {[P in Diff<keyof T, K>]: T[P]};
|
/third_party/typescript/tests/cases/compiler/ |
D | indexedAccessRetainsIndexSignature.ts | 1 type Diff<T extends keyof any, U extends keyof any> = alias 3 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>> 4 type Omit1<U, K extends keyof U> = Pick<U, Diff<keyof U, K>>; 7 type Omit2<T, K extends keyof T> = {[P in Diff<keyof T, K>]: T[P]};
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
D | CsvData.java | 142 public abstract static class Diff { class in CsvData 152 Diff() {} in Diff() method in CsvData.Diff 167 public static Diff diff(CsvData before, CsvData after) { in diff() 170 Diff.diff(before.getRanges(), after.getRanges()), in diff() 171 Diff.diff(before.getShortcodes(), after.getShortcodes()), in diff() 172 Diff.diff(before.getExamples(), after.getExamples()), in diff() 173 Diff.diff(before.getFormats(), after.getFormats()), in diff() 174 Diff.diff(before.getOperators(), after.getOperators())); in diff()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FileUtilities.cpp | 147 double Diff; in CompareNumbers() local 149 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers() 151 Diff = std::abs(V2/V1 - 1.0); in CompareNumbers() 153 Diff = 0; // Both zero. in CompareNumbers() 154 if (Diff > RelTolerance) { in CompareNumbers() 158 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n' in CompareNumbers()
|
/third_party/spirv-tools/test/diff/ |
D | diff_test.cpp | 50 TEST(DiffIndentTest, Diff) { in TEST() argument 99 TEST(DiffNoHeaderTest, Diff) { in TEST() argument 143 TEST(DiffHeaderTest, Diff) { in TEST() argument 219 spvtools::diff::Diff(src.get(), dst.get(), diff_result, options); in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86CmovConversion.cpp | 473 unsigned Diff[LoopIterations] = {LoopDepth[0].Depth - LoopDepth[0].OptDepth, in checkForProfitableCmovCandidates() local 503 if (Diff[1] < GainCycleThreshold) in checkForProfitableCmovCandidates() 507 if (Diff[1] == Diff[0]) in checkForProfitableCmovCandidates() 508 WorthOptLoop = Diff[0] * 8 >= LoopDepth[0].Depth; in checkForProfitableCmovCandidates() 509 else if (Diff[1] > Diff[0]) in checkForProfitableCmovCandidates() 511 (Diff[1] - Diff[0]) * 2 >= (LoopDepth[1].Depth - LoopDepth[0].Depth) && in checkForProfitableCmovCandidates() 512 (Diff[1] * 8 >= LoopDepth[1].Depth); in checkForProfitableCmovCandidates()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | ConstantHoisting.cpp | 527 uint64_t Diff = LimVal1 - LimVal2; in calculateOffsetDiff() local 528 return APInt(BW, Diff, true); in calculateOffsetDiff() 589 Optional<APInt> Diff = calculateOffsetDiff( in maximizeConstantsInRange() local 592 if (Diff) { in maximizeConstantsInRange() 594 TTI->getIntImmCodeSizeCost(Opcode, OpndIdx, Diff.getValue(), Ty); in maximizeConstantsInRange() 596 LLVM_DEBUG(dbgs() << "Offset " << Diff.getValue() << " " in maximizeConstantsInRange() 634 APInt Diff = ConstCand->ConstInt->getValue() - ConstInt->getValue(); in findAndMakeBaseConstant() local 635 Constant *Offset = Diff == 0 ? nullptr : ConstantInt::get(Ty, Diff); in findAndMakeBaseConstant() 685 APInt Diff = CC->ConstInt->getValue() - MinValItr->ConstInt->getValue(); in findBaseConstants() local 686 if ((Diff.getBitWidth() <= 64) && in findBaseConstants() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | ExpandMemCmp.cpp | 296 Value *Diff = Builder.CreateSub(LoadSrc1, LoadSrc2); in emitLoadCompareByteBlock() local 298 PhiRes->addIncoming(Diff, LoadCmpBlocks[BlockIndex]); in emitLoadCompareByteBlock() 303 Value *Cmp = Builder.CreateICmp(ICmpInst::ICMP_NE, Diff, in emitLoadCompareByteBlock() 304 ConstantInt::get(Diff->getType(), 0)); in emitLoadCompareByteBlock() 323 Value *Diff = nullptr; in getCompareLoadPairs() local 372 Diff = Builder.CreateXor(LoadSrc1, LoadSrc2); in getCompareLoadPairs() 373 Diff = Builder.CreateZExt(Diff, MaxLoadType); in getCompareLoadPairs() 374 XorList.push_back(Diff); in getCompareLoadPairs() 401 assert(Diff && "Failed to find comparison diff"); in getCompareLoadPairs() 402 Cmp = Builder.CreateICmpNE(OrList[0], ConstantInt::get(Diff->getType(), 0)); in getCompareLoadPairs()
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
D | diff.js | 13 class Diff { class 97 tree: new Diff({ actual, ideal, filterSet, shrinkwrapInflated }), 248 children.push(new Diff({ actual, ideal, filterSet, shrinkwrapInflated })) 306 module.exports = Diff
|
/third_party/skia/third_party/externals/tint/tools/src/substr/ |
D | substr.go | 33 front := func() diff.Diff { return diffs[0] } 34 back := func() diff.Diff { return diffs[len(diffs)-1] }
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonConstExtenders.cpp | 407 Register ExtR, int32_t &Diff); 1702 Register ExtR, int32_t &Diff) { in replaceInstrExpr() argument 1722 int32_t D = isInt<16>(Diff) ? Diff : (Diff > 0 ? 32767 : -32768); in replaceInstrExpr() 1723 if (Diff > 32767) { in replaceInstrExpr() 1727 uint32_t UD = Diff; in replaceInstrExpr() 1736 Diff -= D; in replaceInstrExpr() 1742 if (!Uses.contains(-Diff)) in replaceInstrExpr() 1743 dbgs() << "Diff: " << -Diff << " out of range " << Uses in replaceInstrExpr() 1745 assert(Uses.contains(-Diff)); in replaceInstrExpr() 1768 Diff = 0; in replaceInstrExpr() [all …]
|
D | HexagonFixupHwLoops.cpp | 148 unsigned Diff = AbsoluteDifference(InstOffset, in fixupLoopInstrs() local 150 if (Diff > MaxLoopRange) { in fixupLoopInstrs()
|
/third_party/node/deps/npm/node_modules/diff/dist/ |
D | diff.js | 4 (global = global || self, factory(global.Diff = {})); 7 function Diff() {} class 8 Diff.prototype = { class 313 var characterDiff = new Diff(); 353 var wordDiff = new Diff(); 390 var lineDiff = new Diff(); 433 var sentenceDiff = new Diff(); 443 var cssDiff = new Diff(); 552 …var jsonDiff = new Diff(); // Discriminate between two lines of pretty-printed, serialized JSON wh… 569 …return Diff.prototype.equals.call(jsonDiff, left.replace(/,([\r\n])/g, '$1'), right.replace(/,([\r… [all …]
|
/third_party/node/deps/npm/test/bin/ |
D | windows-shims.js | 5 const Diff = require('diff') constant 32 const diffFiles = (npm, npx) => Diff.diffChars(npm, npx)
|
/third_party/json/docs/mkdocs/docs/features/ |
D | json_patch.md | 1 # JSON Patch and Diff 23 ## Diff section in JSON Patch and Diff
|
/third_party/node/deps/v8/src/base/ |
D | iterator.h | 13 template <class Category, class Type, class Diff = std::ptrdiff_t, 18 using difference_type = Diff;
|
/third_party/node/deps/npm/node_modules/diff/lib/ |
D | index.es6.js | 1 function Diff() {} class 2 Diff.prototype = { 307 var characterDiff = new Diff(); 347 var wordDiff = new Diff(); 384 var lineDiff = new Diff(); 427 var sentenceDiff = new Diff(); 437 var cssDiff = new Diff(); 546 var jsonDiff = new Diff(); // Discriminate between two lines of pretty-printed, serialized JSON whe… 563 …return Diff.prototype.equals.call(jsonDiff, left.replace(/,([\r\n])/g, '$1'), right.replace(/,([\r… 638 var arrayDiff = new Diff(); [all …]
|
/third_party/node/deps/npm/node_modules/diff/lib/diff/ |
D | base.js | 7 exports["default"] = Diff; 10 function Diff() {} class 12 Diff.prototype = {
|
/third_party/rust/crates/clap/examples/ |
D | git-derive.rs | 25 Diff { enumerator 107 Commands::Diff { in main()
|
/third_party/node/deps/npm/lib/commands/ |
D | diff.js | 11 class Diff extends BaseCommand { class 291 module.exports = Diff
|
/third_party/spirv-tools/source/diff/ |
D | diff.h | 42 spv_result_t Diff(opt::IRContext* src, opt::IRContext* dst, std::ostream& out,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCLoopInstrFormPrep.cpp | 316 const SCEV *Diff = SE->getMinusSCEV(LSCEV, B.BaseSCEV); in addOneCandidate() local 317 if (const auto *CDiff = dyn_cast<SCEVConstant>(Diff)) { in addOneCandidate() 773 const SCEVConstant *Diff = dyn_cast<SCEVConstant>( in alreadyPrepared() local 775 if (Diff && !Diff->getAPInt().urem(Form)) { in alreadyPrepared()
|
/third_party/node/deps/openssl/openssl/util/ |
D | c-compress-test.pl | 40 use Text::Diff;
|