Home
last modified time | relevance | path

Searched refs:grandchild (Results 1 – 25 of 1355) sorted by relevance

12345678910>>...55

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/html/
H A DHTMLTableRowsCollection.cpp75 … for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) { in rowAfter() local
76 if (grandchild->hasTagName(trTag)) in rowAfter()
93 … for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) { in rowAfter() local
94 if (grandchild->hasTagName(trTag)) in rowAfter()
107 … for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) { in rowAfter() local
108 if (grandchild->hasTagName(trTag)) in rowAfter()
121 …for (Node* grandchild = child->lastChild(); grandchild; grandchild = grandchild->previousSibling()… in lastRow() local
122 if (grandchild->hasTagName(trTag)) in lastRow()
132 …for (Node* grandchild = child->lastChild(); grandchild; grandchild = grandchild->previousSibling()… in lastRow() local
133 if (grandchild->hasTagName(trTag)) in lastRow()
[all …]
/dports/www/p5-HTML-DOM/HTML-DOM-0.058/t/
H A Devent-target.t106 $grandchild->addEventListener(
108 $grandchild->addEventListener(
116 $grandchild->addEventListener(
118 $grandchild->addEventListener(
235 is $_[0]->target, $grandchild,
241 is $_[0]->target, $grandchild,
249 is $_[0]->target, $grandchild,
277 $grandchild->onclick(sub { 0 });
281 $grandchild->onclick(sub{});
285 $grandchild->onmouseover(sub{});
[all …]
H A Devent-basics.t22 my $grandchild =
227 $grandchild->addEventListener(
229 $grandchild->addEventListener(
237 $grandchild->addEventListener(
239 $grandchild->addEventListener(
282 $grandchild->dispatchEvent($event);
359 is $_[0]->target, $grandchild,
365 is $_[0]->target, $grandchild,
373 is $_[0]->target, $grandchild,
400 $grandchild->dispatchEvent(
[all …]
/dports/devel/p5-Class-AutoClass/Class-AutoClass-1.56/t/
H A Dautoclass.102.use_order.t45 is($grandchild->grandchild_attribute, 'grandchild', 'grandchild attribute set in grandchild');
46 is($grandchild->child_attribute, 'child', 'child attribute set in grandchild');
47 is($grandchild->parent_attribute, 'parent', 'parent attribute set in grandchild');
49 is($grandchild->grandchild_default, 'grandchild', 'grandchild default set in grandchild');
50 is($grandchild->child_default, 'child', 'child default set in grandchild');
51 is($grandchild->parent_default, 'parent', 'parent default set in grandchild');
52 is($grandchild->stepparent_default, 'stepparent', 'stepparent default set in grandchild');
55 is($grandchild->grandchild_class_default,'grandchild',
56 'grandchild class default set in grandchild');
57 is($grandchild->child_class_default,'child','child class default set in grandchild');
[all …]
H A Dautoclass.103.defaults.t13 my $grandchild=new autoclass_103::GrandChild;
17 is($grandchild->a, 'grandchild', 'grandchild has correct default setting');
25 is($grandchild->b, 'virtual grandchild', 'grandchild has correct default setting for virtual attrib…
28 is($grandchild->c, $c, 'default set in parent, used in grandchild');
31 ok(!$parent->d, 'default set in grandchild not seen in parent');
32 ok(!$child->d, 'default set in grandchild not seen in child');
33 is($grandchild->d, $d, 'default set in grandchild for attribute defined in parent');
36 $grandchild=new autoclass_103::GrandChild(d=>$d);
37 is($grandchild->d,$d, "$d not overwritten by default defined in grandchild");
50 ok(!defined $grandchild->{'b'},'grandchild: virtual default not stored in object HASH');
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/public/android/javatests/src/org/chromium/content/browser/webcontents/
H A DAccessibilitySnapshotTest.java187 Assert.assertEquals("foo", grandchild.text); in testRequestAccessibilitySnapshotItalicStyle()
188 Assert.assertTrue(grandchild.hasStyle); in testRequestAccessibilitySnapshotItalicStyle()
189 Assert.assertTrue(grandchild.italic); in testRequestAccessibilitySnapshotItalicStyle()
201 Assert.assertEquals("foo", grandchild.text); in testRequestAccessibilitySnapshotBoldStyle()
202 Assert.assertTrue(grandchild.hasStyle); in testRequestAccessibilitySnapshotBoldStyle()
203 Assert.assertTrue(grandchild.bold); in testRequestAccessibilitySnapshotBoldStyle()
230 Assert.assertEquals("foo", grandchild.text); in testRequestAccessibilitySnapshotOneCharacterSelection()
247 Assert.assertEquals("foo", grandchild.text); in testRequestAccessibilitySnapshotOneNodeSelection()
266 grandchild = child.children.get(1); in testRequestAccessibilitySnapshotSubsequentNodeSelection()
287 grandchild = child.children.get(1); in testRequestAccessibilitySnapshotMultiNodeSelection()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/safe_browsing/chrome_cleaner/
H A Dreporter_runner_win_unittest.cc83 DuplicateHandleIntoProcess(parent, grandchild.Handle())); in GiveGrandchildHandleToParent()
106 GiveGrandchildHandleToParent(grandchild); in LaunchReporterProcess()
107 return grandchild; in LaunchReporterProcess()
196 if (!grandchild->IsValid()) { in CreateRunningProcesseses()
209 if (!grandchild->IsRunning()) { in CreateRunningProcesseses()
238 GiveGrandchildHandleToParent(grandchild); in MULTIPROCESS_TEST_MAIN()
251 base::Process child, grandchild; in TEST() local
262 EXPECT_TRUE(grandchild.IsRunning()); in TEST()
264 grandchild.Terminate(/*exit_code=*/0, /*wait=*/false); in TEST()
292 base::Process child, grandchild; in TEST() local
[all …]
/dports/devel/scalatest/scalatest-1.6.1/src/test/scala/org/scalatest/
H A DEngineSpec.scala42 val grandchild = DescriptionBranch(child, "grandchild", None) constant
43 child.subNodes ::= grandchild
44 getTestNamePrefix(grandchild) should be ("child child prefix grandchild")
52 val grandchild = DescriptionBranch(child, "grandchild", None) constant
53 child.subNodes ::= grandchild
54 getTestName("howdy there", grandchild) should be ("child child prefix grandchild howdy there")
63 val grandchild = DescriptionBranch(child, "grandchild", None) constant
64 child.subNodes ::= grandchild
67 …val greatGrandchildTest = TestLeaf(grandchild, "great-grandchild test", "great-grandchild test", (…
68 grandchild.subNodes ::= greatGrandchildTest
[all …]
/dports/multimedia/gmerlin/gmerlin-1.2.0/lib/
H A Dparameter_xml.c274 while(grandchild) in bg_xml_2_parameters()
278 grandchild = grandchild->next; in bg_xml_2_parameters()
289 grandchild = grandchild->next; in bg_xml_2_parameters()
303 while(grandchild) in bg_xml_2_parameters()
307 grandchild = grandchild->next; in bg_xml_2_parameters()
318 grandchild = grandchild->next; in bg_xml_2_parameters()
333 while(grandchild) in bg_xml_2_parameters()
337 grandchild = grandchild->next; in bg_xml_2_parameters()
348 grandchild = grandchild->next; in bg_xml_2_parameters()
364 grandchild = grandchild->next; in bg_xml_2_parameters()
[all …]
/dports/www/rt50/rt-5.0.2/t/api/
H A Dtotal-time-worked.t27 my $grandchild = RT::Ticket->new(RT->SystemUser);
28 my ($ok3,$msg3) = $grandchild->Create(
32 ok($ok3,"Created grandchild ticket $msg3");
42 Base => $grandchild->id,
51 ok($ok6,"Create second grandchild $msg6");
61 $grandchild->SetTimeWorked(40);
95 my ($ok3,$msg3) = $grandchild->Create(
99 ok $ok3, "created grandchild ticket $msg3";
103 $grandchild->SetTimeWorked(40);
113 Base => $grandchild->id,
[all …]
/dports/www/rt44/rt-4.4.5/t/api/
H A Dtotal-time-worked.t27 my $grandchild = RT::Ticket->new(RT->SystemUser);
28 my ($ok3,$msg3) = $grandchild->Create(
32 ok($ok3,"Created grandchild ticket $msg3");
42 Base => $grandchild->id,
51 ok($ok6,"Create second grandchild $msg6");
61 $grandchild->SetTimeWorked(40);
95 my ($ok3,$msg3) = $grandchild->Create(
99 ok $ok3, "created grandchild ticket $msg3";
103 $grandchild->SetTimeWorked(40);
113 Base => $grandchild->id,
[all …]
/dports/devel/p5-Hash-AutoHash/Hash-AutoHash-1.17/t/
H A Dautohash.050.grandchild.t44 my $grandchild=new Grandchild;
45 ok($grandchild,'Grandchild new');
55 my $can=$grandchild->can('can');
57 my $can=$grandchild->can('not_defined');
70 my $isa=$grandchild->isa('Grandchild');
72 my $isa=$grandchild->isa('not_defined');
90 my $does=$grandchild->DOES('Grandchild');
108 my $grandchild=grandchild_new();
109 ok($grandchild && (ref($grandchild) eq $grandchild_class),'import grandchild function via Grandhild…
128 ok($grandchild && (ref($grandchild) eq $grandchild_class),'import renamed grandchild function via G…
[all …]
/dports/japanese/dams/dams-4.3.4/dams_makedic/
H A Ddam.cpp104 dam* grandchild, *added; in AddChild() local
106 grandchild = child->_pchildren->Element(i); in AddChild()
107 added = el->AddChild(grandchild); in AddChild()
108 if (added != grandchild) { in AddChild()
109 …been deleted during relinking process of '%s'.\n", E2U(el->_name), E2U(grandchild->_name), E2U(_na… in AddChild()
110 damsTryName.Remove(grandchild, grandchild->key()); in AddChild()
111 damsTryParent.Remove(grandchild, grandchild->_parent); in AddChild()
112 if (grandchild->_key) delete[] grandchild->_key; in AddChild()
113 grandchild->_key = new char[8]; in AddChild()
114 strcpy(grandchild->_key, "deleted"); in AddChild()
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/meta/css/css-multicol/
H A Dscroll-width-height.tentative.html.ini2 [.child, .grandchild 3]
5 [.child, .grandchild 2]
8 [.child, .grandchild 1]
11 [.child, .grandchild 6]
14 [.child, .grandchild 5]
17 [.child, .grandchild 4]
/dports/www/firefox/firefox-99.0/testing/web-platform/meta/css/css-multicol/
H A Dscroll-width-height.tentative.html.ini2 [.child, .grandchild 3]
5 [.child, .grandchild 2]
8 [.child, .grandchild 1]
11 [.child, .grandchild 6]
14 [.child, .grandchild 5]
17 [.child, .grandchild 4]
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/meta/css/css-multicol/
H A Dscroll-width-height.tentative.html.ini2 [.child, .grandchild 3]
5 [.child, .grandchild 2]
8 [.child, .grandchild 1]
11 [.child, .grandchild 6]
14 [.child, .grandchild 5]
17 [.child, .grandchild 4]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/weston/src/tests/
H A Dsubsurface-test.c257 struct wl_surface *grandchild; in TEST() local
267 grandchild = wl_compositor_create_surface(client->wl_compositor); in TEST()
279 struct wl_surface *grandchild; in TEST() local
303 struct wl_surface *grandchild; in TEST() local
327 struct wl_surface *grandchild; in TEST() local
340 wl_subsurface_place_above(com.sub[0], grandchild); in TEST()
351 struct wl_surface *grandchild; in TEST() local
372 struct wl_surface *grandchild; in TEST() local
396 struct wl_surface *grandchild; in TEST() local
420 struct wl_surface *grandchild; in TEST() local
[all …]
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysql-test/suite/ndb/t/
H A Dndb_fk_disable.test254 create table grandchild (
287 delete from grandchild;
323 delete from grandchild;
352 delete from grandchild;
379 delete from grandchild;
408 delete from grandchild;
435 delete from grandchild;
439 drop table parent, child, grandchild;
558 create table grandchild(
586 select * from grandchild order by ref;
[all …]
/dports/databases/percona57-server/percona-server-5.7.36-39/mysql-test/suite/ndb/t/
H A Dndb_fk_disable.test254 create table grandchild (
270 select * from grandchild order by 1,2,3;
279 select * from grandchild order by 1,2,3;
287 delete from grandchild;
306 select * from grandchild order by 1,2,3;
323 delete from grandchild;
352 delete from grandchild;
379 delete from grandchild;
408 delete from grandchild;
435 delete from grandchild;
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/mysql-test/suite/ndb/t/
H A Dndb_fk_disable.test254 create table grandchild (
270 select * from grandchild order by 1,2,3;
279 select * from grandchild order by 1,2,3;
287 delete from grandchild;
306 select * from grandchild order by 1,2,3;
323 delete from grandchild;
352 delete from grandchild;
379 delete from grandchild;
408 delete from grandchild;
435 delete from grandchild;
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/mysql-test/suite/ndb/t/
H A Dndb_fk_disable.test254 create table grandchild (
270 select * from grandchild order by 1,2,3;
279 select * from grandchild order by 1,2,3;
287 delete from grandchild;
306 select * from grandchild order by 1,2,3;
323 delete from grandchild;
352 delete from grandchild;
379 delete from grandchild;
408 delete from grandchild;
435 delete from grandchild;
[all …]
/dports/databases/mysql57-client/mysql-5.7.36/mysql-test/suite/ndb/t/
H A Dndb_fk_disable.test254 create table grandchild (
270 select * from grandchild order by 1,2,3;
279 select * from grandchild order by 1,2,3;
287 delete from grandchild;
306 select * from grandchild order by 1,2,3;
323 delete from grandchild;
352 delete from grandchild;
379 delete from grandchild;
408 delete from grandchild;
435 delete from grandchild;
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/mysql-test/suite/ndb/t/
H A Dndb_fk_disable.test254 create table grandchild (
270 select * from grandchild order by 1,2,3;
279 select * from grandchild order by 1,2,3;
287 delete from grandchild;
306 select * from grandchild order by 1,2,3;
323 delete from grandchild;
352 delete from grandchild;
379 delete from grandchild;
408 delete from grandchild;
435 delete from grandchild;
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/mysql-test/suite/ndb/t/
H A Dndb_fk_disable.test254 create table grandchild (
270 select * from grandchild order by 1,2,3;
279 select * from grandchild order by 1,2,3;
287 delete from grandchild;
306 select * from grandchild order by 1,2,3;
323 delete from grandchild;
352 delete from grandchild;
379 delete from grandchild;
408 delete from grandchild;
435 delete from grandchild;
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/icb/
H A Dres_man.cpp146 int16 child, grandchild; in Defrag() local
185 if (grandchild != -1) in Defrag()
403 int16 child, parent, grandchild; in Res_purge() local
436 if (grandchild != -1) in Res_purge()
450 if (grandchild != -1) in Res_purge()
603 if (grandchild != -1) in Res_purge_all()
614 mem_list[parent].child = grandchild; in Res_purge_all()
617 if (grandchild != -1) in Res_purge_all()
763 int16 grandchild, child, parent; in FindMemBlock() local
892 if (grandchild != -1) in FindMemBlock()
[all …]

12345678910>>...55