/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 | 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.symbols | 66 // this.mine 73 mine: 12, 74 >mine : Symbol(mine, Decl(thisTypeInFunctions2.ts, 25, 6)) 95 this.mine 99 mine: 13, 100 >mine : Symbol(mine, Decl(thisTypeInFunctions2.ts, 36, 6)) 108 this.mine
|
D | thisTypeInFunctions2.errors.txt | 30 // this.mine 33 mine: 12, 42 this.mine 44 mine: 13, 47 this.mine
|
D | tsxElementResolution7.errors.txt | 22 import mine = my; 24 <mine.div n='x' />; 26 <mine.non />;
|
D | globalFunctionAugmentationOverload.types | 15 === tests/cases/compiler/mine.ts ===
|
/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/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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | DecimalFormatProperties.java | 297 private boolean _equalsHelper(boolean mine, boolean theirs) { in _equalsHelper() argument 298 return mine == theirs; in _equalsHelper() 301 private boolean _equalsHelper(int mine, int theirs) { in _equalsHelper() argument 302 return mine == theirs; in _equalsHelper() 305 private boolean _equalsHelper(Object mine, Object theirs) { in _equalsHelper() argument 306 if (mine == theirs) in _equalsHelper() 308 if (mine == null) in _equalsHelper() 310 return mine.equals(theirs); in _equalsHelper()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
D | DecimalFormatProperties.java | 302 private boolean _equalsHelper(boolean mine, boolean theirs) { in _equalsHelper() argument 303 return mine == theirs; in _equalsHelper() 306 private boolean _equalsHelper(int mine, int theirs) { in _equalsHelper() argument 307 return mine == theirs; in _equalsHelper() 310 private boolean _equalsHelper(Object mine, Object theirs) { in _equalsHelper() argument 311 if (mine == theirs) in _equalsHelper() 313 if (mine == null) in _equalsHelper() 315 return mine.equals(theirs); in _equalsHelper()
|
/third_party/flutter/skia/third_party/externals/wuffs/test/data/ |
D | midsummer.txt | 59 As she is mine, I may dispose of her: 126 And what is mine my love shall render him. 127 And she is mine, and all my right of her 243 Were the world mine, Demetrius being bated, 260 His folly, Helena, is no fault of mine. 262 None, but your beauty: would that fault were mine! 314 He hail'd down oaths that he was only mine;
|
D | midsummer.txt.gz | ... the ancient privilege of Athens,
59As she is mine, I may dispose of her:
60Which shall ... |
/third_party/node/deps/npm/lib/ |
D | owner.js | 60 var mine = d[un] || [] 62 return mine.filter(p => theirs.indexOf(p) === -1)
|
/third_party/skia/site/docs/dev/testing/ |
D | skqp.md | 42 (Your value of `$OUTPUT_LOCATION` will differ from mine.
|
/third_party/flutter/skia/site/dev/testing/ |
D | skqp.md | 37 (Your value of `$OUTPUT_LOCATION` will differ from mine.
|
/third_party/mesa3d/docs/relnotes/ |
D | 17.2.8.rst | 36 - Graphical glitches r600 in game this war of mine linux native
|