Home
last modified time | relevance | path

Searched refs:getSex (Results 1 – 25 of 79) sorted by relevance

1234

/dports/games/scourge/scourge/src/
H A Dpceditor.cpp148 creature->setSex( getSex() ); in saveUI()
161 male->setSelected( creature->getSex() == Constants::SEX_MALE ? true : false ); in loadUI()
193 for ( int i = 0; i < scourge->getShapePalette()->getPortraitCount( creature->getSex() ); i++ ) { in loadUI()
251 getSex(), in createPartyMember()
330 portraitIndex = scourge->getShapePalette()->getPortraitCount( creature->getSex() ) - 1; in handleEvent()
334 if ( portraitIndex < scourge->getShapePalette()->getPortraitCount( creature->getSex() ) - 1 ) { in handleEvent()
344 modelIndex = scourge->getShapePalette()->getCharacterModelInfoCount( creature->getSex() ) - 1; in handleEvent()
349 …if ( modelIndex < scourge->getShapePalette()->getCharacterModelInfoCount( creature->getSex() ) - 1… in handleEvent()
420 int PcEditor::getSex() { in getSex() function in PcEditor
667 scourge->getShapePalette()->getPortraitTexture( getSex(), portraitIndex ).glBind(); in drawWidgetContents()
[all …]
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/utils/samples/
H A DSample.java60 public Sex getSex() { in getSex() method in Sample
90 cmp = gender.compareTo(other.getSex()); in compareTo()
123 … mergeValues(this.getID(), "Gender", this.getSex(), newSample.getSex(), Sex.UNKNOWN), in mergeSamples()
/dports/www/webtrees/webtrees-1.7.18/webtrees/app/Controller/
H A DRelationshipController.php143 $relationships[$i] = $spouse_codes[$next->getSex()];
145 $relationships[$i] = $child_codes[$next->getSex()];
147 $relationships[$i] = $parent_codes[$next->getSex()];
149 $relationships[$i] = $sibling_codes[$next->getSex()];
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/aop/aspectj/
H A DProceedTests.java75 assertEquals("value changed in around advice","MALE", this.testBean.getSex()); in testProceedWithArgsAcrossAspects()
93 String getSex(); in getSex() method
116 public String getSex() { in getSex() method in SimpleBeanImpl
/dports/www/webtrees/webtrees-1.7.18/webtrees/app/Module/
H A DClippingsCartModule.php187 if ($record->getSex() === 'F') {
203 if ($record->getSex() === 'F') {
219 if ($record->getSex() === 'F') {
238 if ($record->getSex() === 'F') {
257 if ($record->getSex() === 'F') {
H A DRelativesTabModule.php379 <?php if ($controller->record->getSex() != "F") { ?>
391 if ($controller->record->getSex() != "M") { ?>
/dports/www/webtrees/webtrees-1.7.18/webtrees/app/Functions/
H A DFunctionsPrintLists.php426 $deat_by_age[$age_at_death] .= $individual->getSex();
450 $html .= '<td hidden>' . $individual->getSex() . '</td>';
811 $birt_by_decade[(int) ($hdate->gregorianYear() / 10) * 10] .= $husb->getSex();
815 $marr_by_age[$hage] .= $husb->getSex();
854 $birt_by_decade[(int) ($wdate->gregorianYear() / 10) * 10] .= $wife->getSex();
858 $marr_by_age[$wage] .= $wife->getSex();
873 …decade[(int) ($marriage_dates[0]->gregorianYear() / 10) * 10] .= $husb->getSex() . $wife->getSex();
930 if ($wife->getSex() == 'F') {
933 if ($wife->getSex() == 'M') {
938 if ($husb->getSex() == 'M') {
[all …]
H A DFunctionsPrint.php269 switch ($parent->getSex()) {
367 $husb_age != '' && $record->getSex() == 'M' && $husb_age != $age ||
368 $wife_age != '' && $record->getSex() == 'F' && $wife_age != $age
408 $husb_age != '' && $indi->getSex() == 'M' && $husb_age != $age ||
409 $wife_age != '' && $indi->getSex() == 'F' && $wife_age != $age
/dports/www/webtrees/webtrees-1.7.18/webtrees/app/Module/InteractiveTree/
H A DTreeView.php168 … return '<div class="tv' . $individual->getSex() . ' tv_person_expanded">' . $hmtl . '</div>';
353 switch ($individual->getSex()) {
367 $sex = $individual->getSex();
/dports/www/webtrees/webtrees-1.7.18/webtrees/app/Census/
H A DCensusColumnSexMF.php41 switch ($individual->getSex()) {
H A DCensusColumnAgeFemale.php36 if ($individual->getSex() === 'M') {
H A DCensusColumnAgeMale.php36 if ($individual->getSex() === 'F') {
H A DCensusColumnAgeFemale5Years.php36 if ($individual->getSex() === 'M') {
H A DCensusColumnAgeMale5Years.php36 if ($individual->getSex() === 'F') {
H A DCensusColumnChildrenBornAlive.php36 if ($individual->getSex() !== 'F') {
H A DCensusColumnChildrenDied.php36 if ($individual->getSex() !== 'F') {
H A DCensusColumnChildrenLiving.php36 if ($individual->getSex() !== 'F') {
/dports/www/webtrees/webtrees-1.7.18/webtrees/app/
H A DIndividual.php467 return '<i class="icon-silhouette-' . $this->getSex() . '"></i>';
710 … $min[] = $tmp->maximumJulianDay() - 365 * ($this->getSex() == 'F' ? 45 : 65);
762 public function getSex() function in Fisharebest\\Webtrees\\Individual
780 return self::sexImage($this->getSex(), $size);
805 return 'person_box' . $tmp[$this->getSex()];
1034 if ($parent->getSex() == 'M') {
H A DFamily.php58 …if ($this->husb && $this->husb->getSex() === 'F' || $this->wife && $this->wife->getSex() === 'M') {
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/utils/samples/
H A DSampleUnitTest.java33 Assert.assertEquals(gender, sample.getSex()); in basicSampleTest()
65 Assert.assertEquals(mergedSample1.getSex(), gender); in testMergeSamples()
/dports/www/webtrees/webtrees-1.7.18/webtrees/
H A Dedit_interface.php601 if ($person->getSex() === 'F') {
711 if ($parent->getSex() === 'F') {
1063 if ($person->getSex() === 'F') {
1135 if ($person->getSex() === 'F') {
1142 if ($person->getSex() === 'M') {
1622 print_indi_form('update', $person, null, $name_fact, '', $person->getSex());
1637 print_indi_form('update', $person, null, null, '', $person->getSex());
1906 switch ($father->getSex()) {
1947 switch ($mother->getSex()) {
1989 switch ($child->getSex()) {
[all …]
/dports/www/webtrees/webtrees-1.7.18/webtrees/app/GedcomCode/
H A DGedcomCodeAdop.php41 $sex = $record->getSex();
H A DGedcomCodeName.php41 $sex = $record->getSex();
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/bladerunner/
H A Dsuspects_database.h84 int getSex() const;
/dports/games/scummvm/scummvm-2.5.1/engines/bladerunner/
H A Dsuspects_database.h84 int getSex() const;

1234