Home
last modified time | relevance | path

Searched full:mother (Results 1 – 25 of 167) sorted by relevance

1234567

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
DHumanTest.java43 Human mother = new Human(); in testNoChildren() local
44 mother.setName("Mother"); in testNoChildren()
45 mother.setBirthday(new Date(100000000000L)); in testNoChildren()
46 mother.setBirthPlace("Saint-Petersburg"); in testNoChildren()
47 father.setPartner(mother); in testNoChildren()
48 mother.setPartner(father); in testNoChildren()
49 mother.setBankAccountOwner(father); in testNoChildren()
58 assertEquals("Mother", father2.getPartner().getName()); in testNoChildren()
69 Human mother = new Human(); in testNoChildrenPretty() local
70 mother.setName("Mother"); in testNoChildrenPretty()
[all …]
DHuman_WithArrayOfChildrenTest.java28 private Human_WithArrayOfChildren mother; field in Human_WithArrayOfChildrenTest.Human_WithArrayOfChildren
46 return mother; in getMother()
49 public void setMother(Human_WithArrayOfChildren mother) { in setMother() argument
50 this.mother = mother; in setMother()
86 Human_WithArrayOfChildren mother = new Human_WithArrayOfChildren(); in createSon() local
87 mother.setName("Mother"); in createSon()
88 mother.setBirthday(new Date(100000000000L)); in createSon()
89 mother.setBirthPlace("Saint-Petersburg"); in createSon()
90 father.setPartner(mother); in createSon()
91 mother.setPartner(father); in createSon()
[all …]
DHuman3.java22 private Human3 mother; field in Human3
40 return mother; in getMother()
43 public void setMother(Human3 mother) { in setMother() argument
44 this.mother = mother; in setMother()
DHuman2.java22 private Human2 mother; field in Human2
40 return mother; in getMother()
43 public void setMother(Human2 mother) { in setMother() argument
44 this.mother = mother; in setMother()
DHuman.java22 private Human mother; field in Human
40 return mother; in getMother()
43 public void setMother(Human mother) { in setMother() argument
44 this.mother = mother; in setMother()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
DHumanGenericsTest.java44 HumanGen mother = new HumanGen(); in testNoChildren() local
45 mother.setName("Mother"); in testNoChildren()
46 mother.setBirthday(new Date(100000000000L)); in testNoChildren()
47 mother.setBirthPlace("Saint-Petersburg"); in testNoChildren()
48 father.setPartner(mother); in testNoChildren()
49 mother.setPartner(father); in testNoChildren()
50 mother.setBankAccountOwner(father); in testNoChildren()
59 assertEquals("Mother", father2.getPartner().getName()); in testNoChildren()
75 HumanGen mother = new HumanGen(); in testNoChildren2() local
76 mother.setName("Mother"); in testNoChildren2()
[all …]
DAbstractHumanGen.java24 private K mother; field in AbstractHumanGen
58 return mother; in getMother()
61 public void setMother(K mother) { in setMother() argument
62 this.mother = mother; in setMother()
/external/snakeyaml/src/test/resources/recursive/
Dwith-childrenArray-no-root-tag.yaml13 mother: &id004
19 mother: null
20 name: Mother
25 mother: null
32 mother: *id004
Dwith-children-2.yaml13 mother: &id004
19 mother: null
20 name: Mother
26 mother: null
33 mother: *id004
Dwith-children-as-list.yaml9 mother: null
17 mother: null
18 name: Mother
24 mother: *id003
33 mother: *id003
Dwith-children.yaml13 mother: &id004
19 mother: null
20 name: Mother
26 mother: null
33 mother: *id004
Dwith-children-no-root-tag.yaml13 mother: &id004
19 mother: null
20 name: Mother
26 mother: null
33 mother: *id004
Dwith-children-3.yaml13 mother: &id004
19 mother: null
20 name: Mother
25 mother: null
32 mother: *id004
Dwith-childrenArray.yaml13 mother: &id004
19 mother: null
20 name: Mother
25 mother: null
32 mother: *id004
Dwith-children-as-set.yaml9 mother: null
17 mother: null
18 name: Mother
24 mother: *id003
34 mother: *id003
Dwith-children-pretty.yaml15 mother: &id004 {
21 mother: null,
22 name: Mother,
31 mother: null,
40 mother: *id004,
Dwith-children-as-map.yaml9 mother: null
17 mother: null
18 name: Mother
24 mother: *id003
34 mother: *id003
/external/snakeyaml/src/test/resources/recursive/generics/
Dwith-children-2.yaml13 mother: &id004
19 mother: null
20 name: Mother
26 mother: null
33 mother: *id004
Dwith-children-as-list.yaml9 mother: null
17 mother: null
18 name: Mother
24 mother: *id003
33 mother: *id003
Dwith-children-3.yaml14 mother: &id004
20 mother: null
21 name: Mother
26 mother: null
33 mother: *id004
Dwith-children.yaml14 mother: &id004
20 mother: null
21 name: Mother
27 mother: null
34 mother: *id004
Dwith-children-as-set.yaml9 mother: null
17 mother: null
18 name: Mother
24 mother: *id003
34 mother: *id003
Dwith-children-as-map.yaml9 mother: null
17 mother: null
18 name: Mother
24 mother: *id003
34 mother: *id003
/external/libcap/progs/old/
Dsucap.c123 /* 1. mother process sets gid and uid in main()
124 * 2. child process sets capabilities of mother process in main()
125 * 3. mother process execs whatever is to be executed in main()
129 /* Mother process. */ in main()
185 /* Wait for mother process to setuid */ in main()
188 /* Set privileges on mother process */ in main()
194 /* exit to signal mother process that we are ready */ in main()
/external/openthread/src/core/thread/
Daddress_resolver.hpp281 void DecrementTimeout(void) { mInfo.mOther.mTimeout--; } in DecrementTimeout()
282 bool IsTimeoutZero(void) const { return mInfo.mOther.mTimeout == 0; } in IsTimeoutZero()
283 uint16_t GetTimeout(void) const { return mInfo.mOther.mTimeout; } in GetTimeout()
284 void SetTimeout(uint16_t aTimeout) { mInfo.mOther.mTimeout = aTimeout; } in SetTimeout()
286 uint16_t GetRetryDelay(void) const { return mInfo.mOther.mRetryDelay; } in GetRetryDelay()
287 void SetRetryDelay(uint16_t aDelay) { mInfo.mOther.mRetryDelay = aDelay; } in SetRetryDelay()
289 bool CanEvict(void) const { return mInfo.mOther.mCanEvict; } in CanEvict()
290 void SetCanEvict(bool aCanEvict) { mInfo.mOther.mCanEvict = aCanEvict; } in SetCanEvict()
292 bool IsInRampDown(void) const { return mInfo.mOther.mRampDown; } in IsInRampDown()
293 void SetRampDown(bool aRampDown) { mInfo.mOther.mRampDown = aRampDown; } in SetRampDown()
[all …]

1234567