Home
last modified time | relevance | path

Searched refs:Child (Results 1 - 25 of 102) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/WindowsManifest/
H A DWindowsManifestMerger.cpp90 for (xmlNodePtr Child = Parent->children; Child; Child = Child->next) { in getChildWithName()
91 if (xmlStringsEqual(Child->name, ElementName)) { in getChildWithName()
92 return Child; in getChildWithName()
326 for (xmlNodePtr Child = Node->children; Child; Child = Child in explicateNamespace()
[all...]
/third_party/python/Lib/test/
H A Dtest_isinstance.py183 class Child(Super):
198 self.assertEqual(False, isinstance(Super(), Child))
202 self.assertEqual(True, isinstance(Child(), Super))
203 self.assertEqual(False, isinstance(Child(), AbstractSuper))
210 self.assertEqual(False, isinstance(AbstractSuper(), Child))
215 self.assertEqual(False, isinstance(AbstractChild(), Child))
240 self.assertEqual(False, issubclass(Super, Child))
242 self.assertEqual(True, issubclass(Child, Child))
243 self.assertEqual(True, issubclass(Child, Supe
180 class Child(Super): global() class
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
H A DArchive.h87 class Child { class in llvm::object::Archive
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 { in operator ==()
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; } in operator ->()
154 const Child in operator ->()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
H A DInlineInfo.cpp34 for (const auto &Child : II.Children) in operator <<()
35 OS << Child; in operator <<() local
47 for (const auto &Child : II.Children) { in getInlineStackHelper()
48 if (::getInlineStackHelper(Child, Addr, InlineStack)) in getInlineStackHelper()
129 // Child address ranges are encoded relative to the first address in the in lookup()
202 // Child address ranges are encoded relative to the first address in the in decode()
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 in decode()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DprivateNamesConstructorChain-1.js6 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 {
12 #foo = "foo"; // OK (Child's #foo does not conflict, as `Parent`'s `#foo` is not accessible)
29 __classPrivateFieldGet(new Child(), _Parent_foo, "f"); // OK (`#foo` was added when `Parent`'s constructor was called on `child`)
30 __classPrivateFieldGet(Child, _a, "f", _Parent_bar); // Error: not found
35 class Child extends Parent {
38 _Child_foo.set(this, "foo"); // OK (Child's #foo does not conflict, as `Parent`'s `#foo` is not accessible)
H A DmergedInheritedClassInterface.js12 interface Child extends BaseInterface {
16 class Child extends BaseClass {
32 var child : Child;
71 var Child = /** @class */ (function (_super) {
72 __extends(Child, _super);
73 function Child() {
76 Child.prototype.method = function () { };
77 return Child;
H A DprivateNamesConstructorChain-2.js6 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> {
12 #foo = "foo"; // OK (Child's #foo does not conflict, as `Parent`'s `#foo` is not accessible)
31 __classPrivateFieldGet(new Child(), _Parent_foo, "f"); // OK (`#foo` was added when `Parent`'s constructor was called on `child`)
32 __classPrivateFieldGet(Child, _a, "f", _Parent_bar); // Error: not found
37 class Child extends Parent {
40 _Child_foo.set(this, "foo"); // OK (Child's #foo does not conflict, as `Parent`'s `#foo` is not accessible)
H A DdestructuringInitializerContextualTypeFromContext.js14 }) => Child({name, ...props});
16 const Child: SFC<Props> = ({
54 return Child(__assign({ name: name }, props));
56 var Child = function (_a) {
/third_party/rust/crates/clap/src/util/
H A Dgraph.rs2 struct Child<T> { structure names
7 impl<T> Child<T> { impls
9 Child { in new()
17 pub(crate) struct ChildGraph<T>(Vec<Child<T>>);
30 self.0.push(Child::new(req));
37 self.0.push(Child::new(child));
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
H A DWindowsResource.cpp400 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 in addIDChild()
540 auto Child = StringChildren.find(NameString); addNameChild() local
[all...]
H A DArchive.cpp321 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> Archiv
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp176 while (auto Child = Children->getNext()) { in initializeChildren()
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 in addChildToLayout()
[all...]
H A DPDBSymbolFunc.cpp38 while (auto Child = DataChildren->getNext()) { in FunctionArgEnumerator()
39 if (Child->getDataKind() == PDB_DataKind::Param) { in FunctionArgEnumerator()
40 std::string Name = Child->getName(); in FunctionArgEnumerator()
43 Args.push_back(std::move(Child)); in FunctionArgEnumerator()
H A DPDBSymbol.cpp174 while (auto Child = Result->getNext()) { in getChildStats()
175 ++Stats[Child->getSymTag()]; in getChildStats()
204 auto Child = Session.getSymbolById(Value); in dumpSymbolIdField()
208 if (!Child) in dumpSymbolIdField()
213 Child->defaultDump(OS, Indent + 2, ShowFlags, PdbSymbolIdField::None); in dumpSymbolIdField()
/third_party/rust/crates/nix/test/sys/
H A Dtest_wait.rs15 Child => { in test_wait_signal()
42 Child => { in test_waitid_signal()
60 // Safe: Child only calls `_exit`, which is async-signal-safe. in test_wait_exit()
62 Child => unsafe { in test_wait_exit()
83 // Safe: Child only calls `_exit`, which is async-signal-safe. in test_waitid_exit()
85 Child => unsafe { in test_waitid_exit()
116 Child => unsafe { _exit(0) }, in test_waitstatus_pid()
135 Child => unsafe { _exit(0) }, in test_waitid_pid()
241 Child => ptrace_child(), in test_wait_ptrace()
253 Child in test_waitid_ptrace()
[all...]
/third_party/jerryscript/tests/jerry/
H A Dobject-get-own-property-names.js52 function Child() { class
56 Child.prototype = new Parent;
57 Child.prototype.prototypeMethod = function() {};
59 props = Object.getOwnPropertyNames (new Child());
H A Dobject-keys.js51 function Child() { class
55 Child.prototype = new Parent;
56 Child.prototype.prototypeMethod = function() {};
58 props = Object.keys (new Child());
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DTwine.h137 union Child union in llvm::Twine
157 Child LHS;
160 Child RHS;
181 explicit Twine(Child LHS, NodeKind LHSKind, Child RHS, NodeKind RHSKind) in Twine()
244 void printOneChild(raw_ostream &OS, Child Ptr, NodeKind Kind) const;
247 void printOneChildRepr(raw_ostream &OS, Child Ptr,
396 Child LHS, RHS; in utohexstr()
509 Child NewLHS, NewRHS; in concat()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DTwine.h136 union Child union in llvm::Twine
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()
/third_party/jerryscript/tests/jerry-test-suite/15/15.02/15.02.04/15.02.04.05/
H A D15.02.04.05-003.js19 function Child() { class
23 Child.prototype = Parent;
25 var obj = new Child();
H A D15.02.04.05-004.js19 function Child() { class
23 Child.prototype = Parent;
25 var obj = new Child();
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksIPC.hpp50 struct Child struct
52 Child (const int portOffset);
53 ~Child ();
H A DvksIPC.cpp210 Child::Child (const int portOffset) in Child() function in vksc_server::ipc::Child
215 Child::~Child () in ~Child()
219 bool Child::SetFile (const string& name, const std::vector<u8>& content) in SetFile()
229 std::vector<u8> Child::GetFile (const string& name) in GetFile()
/third_party/jerryscript/tests/jerry/es2015/
H A Dobject-get-own-property-symbols.js84 function Child() { class
88 Child.prototype = new Parent;
89 Child.prototype.prototypeMethod = function() {};
91 props = Object.getOwnPropertySymbols (new Child());
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
H A DResultTests.cpp308 class Child : public OtherClass, public Base {}; class
312 Child child; in TEST()
313 Ref<Child> refChild(&child); in TEST()
321 Child child; in TEST()
322 Ref<Child> refChild(&child); in TEST()
324 Result<Ref<Child>, int> resultChild(std::move(refChild)); in TEST()
331 Child child; in TEST()
332 Ref<Child> refChild(&child); in TEST()
334 Result<Ref<Child>, int> resultChild(std::move(refChild)); in TEST()

Completed in 12 milliseconds

12345