/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/ |
D | HumanTest.java | 45 Human mother = new Human(); in testNoChildren() local 46 mother.setName("Mother"); in testNoChildren() 47 mother.setBirthday(new Date(100000000000L)); in testNoChildren() 48 mother.setBirthPlace("Saint-Petersburg"); in testNoChildren() 49 father.setPartner(mother); in testNoChildren() 50 mother.setPartner(father); in testNoChildren() 51 mother.setBankAccountOwner(father); in testNoChildren() 60 assertEquals("Mother", father2.getPartner().getName()); in testNoChildren() 71 Human mother = new Human(); in testNoChildrenPretty() local 72 mother.setName("Mother"); in testNoChildrenPretty() [all …]
|
D | Human_WithArrayOfChildrenTest.java | 32 private Human_WithArrayOfChildren mother; field in Human_WithArrayOfChildrenTest.Human_WithArrayOfChildren 50 return mother; in getMother() 53 public void setMother(Human_WithArrayOfChildren mother) { in setMother() argument 54 this.mother = mother; in setMother() 90 Human_WithArrayOfChildren mother = new Human_WithArrayOfChildren(); in createSon() local 91 mother.setName("Mother"); in createSon() 92 mother.setBirthday(new Date(100000000000L)); in createSon() 93 mother.setBirthPlace("Saint-Petersburg"); in createSon() 94 father.setPartner(mother); in createSon() 95 mother.setPartner(father); in createSon() [all …]
|
D | Human3.java | 24 private Human3 mother; field in Human3 42 return mother; in getMother() 45 public void setMother(Human3 mother) { in setMother() argument 46 this.mother = mother; in setMother()
|
D | Human2.java | 24 private Human2 mother; field in Human2 42 return mother; in getMother() 45 public void setMother(Human2 mother) { in setMother() argument 46 this.mother = mother; in setMother()
|
D | Human.java | 24 private Human mother; field in Human 42 return mother; in getMother() 45 public void setMother(Human mother) { in setMother() argument 46 this.mother = mother; in setMother()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/ |
D | HumanGenericsTest.java | 51 HumanGen mother = new HumanGen(); in testNoChildren() local 52 mother.setName("Mother"); in testNoChildren() 53 mother.setBirthday(new Date(100000000000L)); in testNoChildren() 54 mother.setBirthPlace("Saint-Petersburg"); in testNoChildren() 55 father.setPartner(mother); in testNoChildren() 56 mother.setPartner(father); in testNoChildren() 57 mother.setBankAccountOwner(father); in testNoChildren() 66 assertEquals("Mother", father2.getPartner().getName()); in testNoChildren() 85 HumanGen mother = new HumanGen(); in testNoChildren2() local 86 mother.setName("Mother"); in testNoChildren2() [all …]
|
D | AbstractHumanGen.java | 25 private K mother; field in AbstractHumanGen 59 return mother; in getMother() 62 public void setMother(K mother) { in setMother() argument 63 this.mother = mother; in setMother()
|
/external/snakeyaml/src/test/resources/recursive/generics/ |
D | with-children-2.yaml | 13 mother: &id004 19 mother: null 20 name: Mother 26 mother: null 33 mother: *id004
|
D | with-children-as-list.yaml | 9 mother: null 17 mother: null 18 name: Mother 24 mother: *id003 33 mother: *id003
|
D | with-children-3.yaml | 14 mother: &id004 20 mother: null 21 name: Mother 26 mother: null 33 mother: *id004
|
D | with-children.yaml | 14 mother: &id004 20 mother: null 21 name: Mother 27 mother: null 34 mother: *id004
|
D | with-children-as-set.yaml | 9 mother: null 17 mother: null 18 name: Mother 24 mother: *id003 34 mother: *id003
|
D | with-children-as-map.yaml | 9 mother: null 17 mother: null 18 name: Mother 24 mother: *id003 34 mother: *id003
|
/external/snakeyaml/src/test/resources/recursive/ |
D | with-childrenArray-no-root-tag.yaml | 13 mother: &id004 19 mother: null 20 name: Mother 25 mother: null 32 mother: *id004
|
D | with-children.yaml | 13 mother: &id004 19 mother: null 20 name: Mother 26 mother: null 33 mother: *id004
|
D | with-children-3.yaml | 13 mother: &id004 19 mother: null 20 name: Mother 25 mother: null 32 mother: *id004
|
D | with-children-as-list.yaml | 9 mother: null 17 mother: null 18 name: Mother 24 mother: *id003 33 mother: *id003
|
D | with-children-2.yaml | 13 mother: &id004 19 mother: null 20 name: Mother 26 mother: null 33 mother: *id004
|
D | with-children-no-root-tag.yaml | 13 mother: &id004 19 mother: null 20 name: Mother 26 mother: null 33 mother: *id004
|
D | with-childrenArray.yaml | 13 mother: &id004 19 mother: null 20 name: Mother 25 mother: null 32 mother: *id004
|
D | with-children-as-set.yaml | 9 mother: null 17 mother: null 18 name: Mother 24 mother: *id003 34 mother: *id003
|
D | with-children-as-map.yaml | 9 mother: null 17 mother: null 18 name: Mother 24 mother: *id003 34 mother: *id003
|
D | with-children-pretty.yaml | 15 mother: &id004 { 21 mother: null, 22 name: Mother, 31 mother: null, 40 mother: *id004,
|
/external/libcap/progs/old/ |
D | sucap.c | 123 /* 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/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | bugprone-virtual-near-miss.cpp | 82 class Mother { class 84 Mother(); 91 class Child : private Father, private Mother { 102 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: method 'Child::methoe' has {{.*}} 'Mother::method' 108 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: method 'Child::methoh' has {{.*}} 'Mother::method' 120 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: method 'Child::decaz' has {{.*}} 'Mother::decay'
|