/third_party/typescript/tests/baselines/reference/ |
D | privateNamesConstructorChain-1.types | 16 new Child().#foo; // OK (`#foo` was added when `Parent`'s constructor was called on `child`) 17 >new Child().#foo : number 18 >new Child() : Child 19 >Child : typeof Child 21 Child.#bar; // Error: not found 22 >Child.#bar : any 23 >Child : typeof Child 27 class Child extends Parent { 28 >Child : Child 31 … #foo = "foo"; // OK (Child's #foo does not conflict, as `Parent`'s `#foo` is not accessible)
|
D | privateNamesConstructorChain-2.types | 16 …new Child<string>().#foo; // OK (`#foo` was added when `Parent`'s constructor was called on `child… 17 >new Child<string>().#foo : number 18 >new Child<string>() : Child<string> 19 >Child : typeof Child 21 Child.#bar; // Error: not found 22 >Child.#bar : any 23 >Child : typeof Child 27 class Child<T> extends Parent<T> { 28 >Child : Child<T> 31 … #foo = "foo"; // OK (Child's #foo does not conflict, as `Parent`'s `#foo` is not accessible)
|
D | privateNamesConstructorChain-1.symbols | 14 new Child().#foo; // OK (`#foo` was added when `Parent`'s constructor was called on `child`) 15 >new Child().#foo : Symbol(Parent.#foo, Decl(privateNamesConstructorChain-1.ts, 0, 14)) 16 >Child : Symbol(Child, Decl(privateNamesConstructorChain-1.ts, 7, 1)) 18 Child.#bar; // Error: not found 19 >Child : Symbol(Child, Decl(privateNamesConstructorChain-1.ts, 7, 1)) 23 class Child extends Parent { 24 >Child : Symbol(Child, Decl(privateNamesConstructorChain-1.ts, 7, 1)) 27 … #foo = "foo"; // OK (Child's #foo does not conflict, as `Parent`'s `#foo` is not accessible) 28 >#foo : Symbol(Child.#foo, Decl(privateNamesConstructorChain-1.ts, 9, 28)) 31 >#bar : Symbol(Child.#bar, Decl(privateNamesConstructorChain-1.ts, 10, 17))
|
D | privateNamesConstructorChain-2.symbols | 15 …new Child<string>().#foo; // OK (`#foo` was added when `Parent`'s constructor was called on `child… 16 >new Child<string>().#foo : Symbol(Parent.#foo, Decl(privateNamesConstructorChain-2.ts, 0, 17)) 17 >Child : Symbol(Child, Decl(privateNamesConstructorChain-2.ts, 7, 1)) 19 Child.#bar; // Error: not found 20 >Child : Symbol(Child, Decl(privateNamesConstructorChain-2.ts, 7, 1)) 24 class Child<T> extends Parent<T> { 25 >Child : Symbol(Child, Decl(privateNamesConstructorChain-2.ts, 7, 1)) 30 … #foo = "foo"; // OK (Child's #foo does not conflict, as `Parent`'s `#foo` is not accessible) 31 >#foo : Symbol(Child.#foo, Decl(privateNamesConstructorChain-2.ts, 9, 34)) 34 >#bar : Symbol(Child.#bar, Decl(privateNamesConstructorChain-2.ts, 10, 17))
|
D | mergedInheritedClassInterface.types | 20 interface Child extends BaseInterface { 25 class Child extends BaseClass { 26 >Child : Child 55 var child : Child; 56 >child : Child 60 >child : Child 65 >child : Child 70 >child : Child 75 >child : Child 80 >child : Child [all …]
|
D | mergedInheritedClassInterface.symbols | 22 interface Child extends BaseInterface { 23 >Child : Symbol(Child, Decl(mergedInheritedClassInterface.ts, 8, 1), Decl(mergedInheritedClassInter… 27 >additional : Symbol(Child.additional, Decl(mergedInheritedClassInterface.ts, 10, 39)) 30 class Child extends BaseClass { 31 >Child : Symbol(Child, Decl(mergedInheritedClassInterface.ts, 8, 1), Decl(mergedInheritedClassInter… 35 >classNumber : Symbol(Child.classNumber, Decl(mergedInheritedClassInterface.ts, 14, 31)) 38 >method : Symbol(Child.method, Decl(mergedInheritedClassInterface.ts, 15, 24)) 63 var child : Child; 65 >Child : Symbol(Child, Decl(mergedInheritedClassInterface.ts, 8, 1), Decl(mergedInheritedClassInter… 78 >child.additional : Symbol(Child.additional, Decl(mergedInheritedClassInterface.ts, 10, 39)) [all …]
|
D | noImplicitAnyMissingGetAccessor.symbols | 10 class Child extends Parent { 11 >Child : Symbol(Child, Decl(noImplicitAnyMissingGetAccessor.ts, 3, 1)) 15 >_x : Symbol(Child._x, Decl(noImplicitAnyMissingGetAccessor.ts, 5, 28)) 18 >message : Symbol(Child.message, Decl(noImplicitAnyMissingGetAccessor.ts, 6, 12)) 22 >this._x : Symbol(Child._x, Decl(noImplicitAnyMissingGetAccessor.ts, 5, 28)) 23 >this : Symbol(Child, Decl(noImplicitAnyMissingGetAccessor.ts, 3, 1)) 24 >_x : Symbol(Child._x, Decl(noImplicitAnyMissingGetAccessor.ts, 5, 28))
|
D | mergedInheritedClassInterface.js | 12 interface Child extends BaseInterface { 16 class Child extends BaseClass { class 32 var child : Child; 71 var Child = /** @class */ (function (_super) { 72 __extends(Child, _super); 73 function Child() { class in Child 76 Child.prototype.method = function () { }; 77 return Child;
|
D | privateNamesConstructorChain-1.js | 6 new Child().#foo; // OK (`#foo` was added when `Parent`'s constructor was called on `child`) 7 Child.#bar; // Error: not found 11 class Child extends Parent { class 30 …__classPrivateFieldGet(new Child(), _foo); // OK (`#foo` was added when `Parent`'s constructor was… 31 __classPrivateFieldGet(Child, _bar); // Error: not found 36 class Child extends Parent {
|
D | privateNamesConstructorChain-2.js | 6 …new Child<string>().#foo; // OK (`#foo` was added when `Parent`'s constructor was called on `child… 7 Child.#bar; // Error: not found 11 class Child<T> extends Parent<T> { class 32 …__classPrivateFieldGet(new Child(), _foo); // OK (`#foo` was added when `Parent`'s constructor was… 33 __classPrivateFieldGet(Child, _bar); // Error: not found 38 class Child extends Parent {
|
D | noImplicitAnyMissingSetAccessor.js | 7 class Child extends Parent { class 34 var Child = /** @class */ (function (_super) { 35 __extends(Child, _super); 36 function Child() { class in Child 39 Object.defineProperty(Child.prototype, "message", { 46 return Child;
|
D | superNoModifiersCrash.js | 9 class Child extends Parent { class 39 var Child = /** @class */ (function (_super) { 40 __extends(Child, _super); 41 function Child() { class in Child 44 Child.prototype.initialize = function () { 46 return Child;
|
D | noImplicitAnyMissingGetAccessor.js | 7 class Child extends Parent { class 35 var Child = /** @class */ (function (_super) { 36 __extends(Child, _super); 37 function Child() { class in Child 40 Object.defineProperty(Child.prototype, "message", { 47 return Child;
|
D | privateNamesConstructorChain-1.errors.txt | 2 …esConstructorChain-1.ts(6,15): error TS2339: Property '#bar' does not exist on type 'typeof Child'. 12 … new Child().#foo; // OK (`#foo` was added when `Parent`'s constructor was called on `child`) 13 Child.#bar; // Error: not found 15 !!! error TS2339: Property '#bar' does not exist on type 'typeof Child'. 19 class Child extends Parent { 20 … #foo = "foo"; // OK (Child's #foo does not conflict, as `Parent`'s `#foo` is not accessible)
|
D | privateNamesConstructorChain-2.errors.txt | 2 …esConstructorChain-2.ts(6,15): error TS2339: Property '#bar' does not exist on type 'typeof Child'. 12 …new Child<string>().#foo; // OK (`#foo` was added when `Parent`'s constructor was called on `child… 13 Child.#bar; // Error: not found 15 !!! error TS2339: Property '#bar' does not exist on type 'typeof Child'. 19 class Child<T> extends Parent<T> { 20 … #foo = "foo"; // OK (Child's #foo does not conflict, as `Parent`'s `#foo` is not accessible)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/WindowsManifest/ |
D | WindowsManifestMerger.cpp | 90 for (xmlNodePtr Child = Parent->children; Child; Child = Child->next) { in getChildWithName() local 91 if (xmlStringsEqual(Child->name, ElementName)) { in getChildWithName() 92 return Child; in getChildWithName() 326 for (xmlNodePtr Child = Node->children; Child; Child = Child->next) { in explicateNamespace() local 327 explicateNamespace(PrefixDef, Child); in explicateNamespace() 500 for (xmlNodePtr Child = Node->children; Child; Child = Child->next) { in reconcileNamespaces() local 501 if (auto E = reconcileNamespaces(Child)) { in reconcileNamespaces() 518 for (xmlNodePtr Child = AdditionalFirstChild; Child; Child = Child->next) { in treeMerge() local 520 if (!isMergeableElement(Child->name) || in treeMerge() 522 getChildWithName(OriginalRoot, Child->name)) || in treeMerge() [all …]
|
/third_party/python/Lib/test/ |
D | test_isinstance.py | 180 class Child(Super): class 194 self.assertEqual(False, isinstance(Super(), Child)) 198 self.assertEqual(True, isinstance(Child(), Super)) 199 self.assertEqual(False, isinstance(Child(), AbstractSuper)) 206 self.assertEqual(False, isinstance(AbstractSuper(), Child)) 211 self.assertEqual(False, isinstance(AbstractChild(), Child)) 236 self.assertEqual(False, issubclass(Super, Child)) 238 self.assertEqual(True, issubclass(Child, Child)) 239 self.assertEqual(True, issubclass(Child, Super)) 240 self.assertEqual(False, issubclass(Child, AbstractSuper)) [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | WindowsResource.cpp | 400 TreeNode *Child; in addChildren() local 407 Child = &Node.addNameChild(NameString, StringTable); in addChildren() 410 Child = &Node.addIDChild(Entry.Identifier.ID); in addChildren() 416 addChildren(*Child, RSR, NextTable, Origin, Context, Duplicates); in addChildren() 430 TreeNode *Child; in addChildren() local 434 Origin, Data.size(), Child); in addChildren() 443 Context, InputFilenames[Child->Origin], InputFilenames.back())); in addChildren() 525 auto Child = IDChildren.find(ID); in addIDChild() local 526 if (Child == IDChildren.end()) { in addIDChild() 532 return *(Child->second); in addIDChild() [all …]
|
D | Archive.cpp | 321 Archive::Child::Child(const Archive *Parent, StringRef Data, in Child() function in Archive::Child 327 Archive::Child::Child(const Archive *Parent, const char *Start, Error *Err) in Child() function in Archive::Child 394 Expected<uint64_t> Archive::Child::getSize() const { in getSize() 404 Expected<uint64_t> Archive::Child::getRawSize() const { in getRawSize() 408 Expected<bool> Archive::Child::isThinMember() const { in isThinMember() 416 Expected<std::string> Archive::Child::getFullName() const { in getFullName() 434 Expected<StringRef> Archive::Child::getBuffer() const { in getBuffer() 456 Expected<Archive::Child> Archive::Child::getNext() const { in getNext() 466 return Child(nullptr, nullptr, nullptr); in getNext() 482 Child Ret(Parent, NextLoc, &Err); in getNext() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | Archive.h | 87 class Child { 101 Child(const Archive *Parent, const char *Start, Error *Err); 102 Child(const Archive *Parent, StringRef Data, uint16_t StartOfFile); 104 bool operator ==(const Child &other) const { 110 Expected<Child> getNext() const; 147 Child C; 150 ChildFallibleIterator() : C(Child(nullptr, nullptr, nullptr)) {} in ChildFallibleIterator() 151 ChildFallibleIterator(const Child &C) : C(C) {} in ChildFallibleIterator() 153 const Child *operator->() const { return &C; } 154 const Child &operator*() const { return C; } [all …]
|
/third_party/flutter/flutter/packages/flutter/test/cupertino/ |
D | segmented_control_test.dart | 21 children[0] = const Text('Child 1'); 22 children[1] = const Text('Child 2'); 56 children[0] = const Text('Child 1'); 57 children[1] = const Text('Child 2'); 58 children[2] = const Text('Child 3'); 104 children[0] = const Text('Child 1'); 126 child: Text('Child 1'), 130 child: Text('Child 2'), 180 // Switch to Child 2 padding should remain the same. 181 await tester.tap(find.text('Child 2')); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
D | InlineInfo.cpp | 34 for (const auto &Child : II.Children) in operator <<() local 35 OS << Child; in operator <<() 47 for (const auto &Child : II.Children) { in getInlineStackHelper() local 48 if (::getInlineStackHelper(Child, Addr, InlineStack)) in getInlineStackHelper() 206 llvm::Expected<InlineInfo> Child = decode(Data, Offset, ChildBaseAddr); in decode() local 207 if (!Child) in decode() 208 return Child.takeError(); in decode() 210 if (Child.get().Ranges.empty()) in decode() 212 Inline.Children.emplace_back(std::move(*Child)); in decode() 242 for (const auto &Child : Children) { in encode() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/ |
D | UDTLayout.cpp | 176 while (auto Child = Children->getNext()) { in initializeChildren() local 177 if (auto Base = unique_dyn_cast<PDBSymbolTypeBaseClass>(Child)) { in initializeChildren() 183 else if (auto Data = unique_dyn_cast<PDBSymbolData>(Child)) { in initializeChildren() 188 } else if (auto VT = unique_dyn_cast<PDBSymbolTypeVTable>(Child)) in initializeChildren() 190 else if (auto Func = unique_dyn_cast<PDBSymbolFunc>(Child)) in initializeChildren() 193 Other.push_back(std::move(Child)); in initializeChildren() 277 void UDTLayoutBase::addChildToLayout(std::unique_ptr<LayoutItemBase> Child) { in addChildToLayout() argument 278 uint32_t Begin = Child->getOffsetInParent(); in addChildToLayout() 280 if (!Child->isElided()) { in addChildToLayout() 281 BitVector ChildBytes = Child->usedBytes(); in addChildToLayout() [all …]
|
/third_party/rust/crates/clap/src/util/ |
D | graph.rs | 2 struct Child<T> { struct 7 impl<T> Child<T> { argument 9 Child { in new() 17 pub(crate) struct ChildGraph<T>(Vec<Child<T>>); 30 self.0.push(Child::new(req)); in insert() 37 self.0.push(Child::new(child)); in insert_child()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | Twine.h | 136 union Child union 156 Child LHS = {0}; 160 Child RHS = {0}; 182 explicit Twine(Child LHS, NodeKind LHSKind, Child RHS, NodeKind RHSKind) in Twine() 245 void printOneChild(raw_ostream &OS, Child Ptr, NodeKind Kind) const; 248 void printOneChildRepr(raw_ostream &OS, Child Ptr, 388 Child LHS, RHS; in utohexstr() 501 Child NewLHS, NewRHS; in concat()
|