/third_party/node/deps/npm/node_modules/diff/lib/patch/ |
D | merge.js | 63 function merge(mine, theirs, base) { argument 64 mine = loadPatch(mine, base); 70 if (mine.index || theirs.index) { 71 ret.index = mine.index || theirs.index; 74 if (mine.newFileName || theirs.newFileName) { 75 if (!fileNameChanged(mine)) { 77 ret.oldFileName = theirs.oldFileName || mine.oldFileName; 78 ret.newFileName = theirs.newFileName || mine.newFileName; 79 ret.oldHeader = theirs.oldHeader || mine.oldHeader; 80 ret.newHeader = theirs.newHeader || mine.newHeader; [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | tsxElementResolution7.types | 31 import mine = my; 32 >mine : typeof mine 33 >my : typeof mine 36 <mine.div n='x' />; 37 ><mine.div n='x' /> : JSX.Element 38 >mine.div : any 39 >mine : typeof mine 44 <mine.non />; 45 ><mine.non /> : JSX.Element 46 >mine.non : any [all …]
|
D | thisTypeInFunctions2.types | 50 …dWithThis because of contextual typing. // this.mine this.willDestroy }, mine:… 52 …mine this.willDestroy }, mine: 12, foo() { this.url; // this: any because '… 60 // this.mine 67 mine: 12, 68 >mine : number 86 …ing this.mine }, mine: 13, foo() { this // this: IndexedWithoutThis because… 88 …s.mine }, mine: 13, foo() { this // this: IndexedWithoutThis because of contextual… 96 this.mine 97 >this.mine : any 99 >mine : any [all …]
|
D | tsxElementResolution7.symbols | 32 import mine = my; 33 >mine : Symbol(mine, Decl(file.tsx, 13, 10)) 34 >my : Symbol(mine, Decl(file.tsx, 3, 1)) 37 <mine.div n='x' />; 38 >mine.div : Symbol(mine.div, Decl(file.tsx, 6, 14)) 39 >mine : Symbol(mine, Decl(file.tsx, 13, 10)) 40 >div : Symbol(mine.div, Decl(file.tsx, 6, 14)) 44 <mine.non />; 45 >mine : Symbol(mine, Decl(file.tsx, 13, 10))
|
D | thisTypeInFunctions2.js | 28 mine: 12, property 37 this.mine 39 mine: 13, property 42 this.mine 63 mine: 12, property 72 this.mine; 74 mine: 13, property 77 this.mine;
|
D | tsxElementResolution7.js | 16 import mine = my; 18 <mine.div n='x' />; 20 <mine.non />; 34 var mine = my; 36 <mine.div n='x'/>; 38 <mine.non />;
|
D | thisTypeInFunctions2.symbols | 66 // this.mine 73 mine: 12, 74 >mine : Symbol(mine, Decl(thisTypeInFunctions2.ts, 25, 6)) 95 this.mine 96 >this.mine : Symbol(IndexedWithoutThis.__index, Decl(thisTypeInFunctions2.ts, 9, 29)) 98 >mine : Symbol(IndexedWithoutThis.__index, Decl(thisTypeInFunctions2.ts, 9, 29)) 101 mine: 13, 102 >mine : Symbol(mine, Decl(thisTypeInFunctions2.ts, 36, 6)) 110 this.mine 111 >this.mine : Symbol(IndexedWithoutThis.__index, Decl(thisTypeInFunctions2.ts, 9, 29)) [all …]
|
D | globalFunctionAugmentationOverload.symbols | 3 >expect : Symbol(expect, Decl(mod.d.ts, 0, 0), Decl(mine.ts, 2, 16)) 16 === tests/cases/compiler/mine.ts === 20 >global : Symbol(global, Decl(mine.ts, 0, 13)) 23 >expect : Symbol(expect, Decl(mod.d.ts, 0, 0), Decl(mine.ts, 2, 16)) 24 >element : Symbol(element, Decl(mine.ts, 3, 20))
|
D | thisTypeInFunctions2.errors.txt | 30 // this.mine 33 mine: 12, 42 this.mine 44 mine: 13, 47 this.mine
|
D | accessorsOverrideProperty8.symbols | 83 const mine = new MyClass(); 84 >mine : Symbol(mine, Decl(accessorsOverrideProperty8.ts, 28, 5)) 87 const value = mine.x; 89 >mine.x : Symbol(MyClass.x, Decl(accessorsOverrideProperty8.ts, 19, 28)) 90 >mine : Symbol(mine, Decl(accessorsOverrideProperty8.ts, 28, 5))
|
D | accessorsOverrideProperty8.js | 30 const mine = new MyClass(); constant 31 const value = mine.x; 49 const mine = new MyClass(); constant 50 const value = mine.x;
|
D | accessorsOverrideProperty8.types | 67 const mine = new MyClass(); 68 >mine : MyClass 72 const value = mine.x; 74 >mine.x : boolean 75 >mine : MyClass
|
D | tsxElementResolution7.errors.txt | 22 import mine = my; 24 <mine.div n='x' />; 26 <mine.non />;
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | ListFieldSchema.java | 127 List<E> mine = mutableListAt(msg, offset, other.size()); in mergeListsAt() local 129 int size = mine.size(); in mergeListsAt() 132 mine.addAll(other); in mergeListsAt() 135 List<E> merged = size > 0 ? mine : other; in mergeListsAt() 169 ProtobufList<E> mine = getProtobufList(msg, offset); in mergeListsAt() local 172 int size = mine.size(); in mergeListsAt() 175 if (!mine.isModifiable()) { in mergeListsAt() 176 mine = mine.mutableCopyWithCapacity(size + otherSize); in mergeListsAt() 178 mine.addAll(other); in mergeListsAt() 181 ProtobufList<E> merged = size > 0 ? mine : other; in mergeListsAt()
|
D | MapFieldSchemaLite.java | 76 MapFieldLite<K, V> mine = (MapFieldLite<K, V>) destMapField; in mergeFromLite() local 79 if (!mine.isMutable()) { in mergeFromLite() 80 mine = mine.mutableCopy(); in mergeFromLite() 82 mine.mergeFrom(other); in mergeFromLite() 84 return mine; in mergeFromLite()
|
D | MapFieldSchemaFull.java | 75 MapField<K, V> mine = (MapField<K, V>) destMapField; in mergeFromFull() local 77 if (!mine.isMutable()) { in mergeFromFull() 78 mine.copy(); in mergeFromFull() 80 mine.mergeFrom(other); in mergeFromFull() 81 return mine; in mergeFromFull()
|
/third_party/node/deps/npm/node_modules/diff/lib/ |
D | index.es6.js | 1229 function merge(mine, theirs, base) { argument 1230 mine = loadPatch(mine, base); 1236 if (mine.index || theirs.index) { 1237 ret.index = mine.index || theirs.index; 1240 if (mine.newFileName || theirs.newFileName) { 1241 if (!fileNameChanged(mine)) { 1243 ret.oldFileName = theirs.oldFileName || mine.oldFileName; 1244 ret.newFileName = theirs.newFileName || mine.newFileName; 1245 ret.oldHeader = theirs.oldHeader || mine.oldHeader; 1246 ret.newHeader = theirs.newHeader || mine.newHeader; [all …]
|
D | index.mjs | 1229 function merge(mine, theirs, base) { argument 1230 mine = loadPatch(mine, base); 1236 if (mine.index || theirs.index) { 1237 ret.index = mine.index || theirs.index; 1240 if (mine.newFileName || theirs.newFileName) { 1241 if (!fileNameChanged(mine)) { 1243 ret.oldFileName = theirs.oldFileName || mine.oldFileName; 1244 ret.newFileName = theirs.newFileName || mine.newFileName; 1245 ret.oldHeader = theirs.oldHeader || mine.oldHeader; 1246 ret.newHeader = theirs.newHeader || mine.newHeader; [all …]
|
/third_party/node/deps/npm/node_modules/diff/dist/ |
D | diff.js | 1235 function merge(mine, theirs, base) { argument 1236 mine = loadPatch(mine, base); 1242 if (mine.index || theirs.index) { 1243 ret.index = mine.index || theirs.index; 1246 if (mine.newFileName || theirs.newFileName) { 1247 if (!fileNameChanged(mine)) { 1249 ret.oldFileName = theirs.oldFileName || mine.oldFileName; 1250 ret.newFileName = theirs.newFileName || mine.newFileName; 1251 ret.oldHeader = theirs.oldHeader || mine.oldHeader; 1252 ret.newHeader = theirs.newHeader || mine.newHeader; [all …]
|
/third_party/libabigail/tests/ |
D | test-cxx-compat.cc | 48 const std::string& mine = "mine"; variable 50 CHECK(opt.value_or(mine) == mine); 55 CHECK(opt.value_or(mine) != mine); 56 CHECK(opt.value_or(mine) == other);
|
/third_party/typescript/tests/cases/conformance/types/thisType/ |
D | thisTypeInFunctions2.ts | 30 mine: 12, 39 this.mine 41 mine: 13, 44 this.mine
|
/third_party/typescript/tests/cases/conformance/jsx/ |
D | tsxElementResolution7.tsx | 17 import mine = my; 19 <mine.div n='x' />; 21 <mine.non />;
|
/third_party/node/deps/npm/node_modules/isexe/test/ |
D | basic.js | 6 var mine = fixture + '/mine.cat' variable 32 fs.writeFileSync(mine, '#!/usr/bin/env cat\nmine\n') 33 fs.chmodSync(mine, parseInt('0744', 8)) 86 t.ok(isexe.sync(mine, { uid: 0, gid: 0 })) 134 t.ok(isexe.sync(mine, options)) 161 isexe(mine, options, function (er, is) {
|
/third_party/ffmpeg/tests/ref/fate/ |
D | sub-lrc-remux | 16 [01:19.82]What's yours and mine 29 [02:30.38]What's yours and mine 39 [03:15.50]What's yours and mine 45 [03:38.02]What's yours and mine
|
/third_party/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/ |
D | accessorsOverrideProperty8.ts | 30 const mine = new MyClass(); constant 31 const value = mine.x;
|