Home
last modified time | relevance | path

Searched refs:parentSection (Results 1 – 25 of 221) sorted by relevance

123456789

/dports/graphics/qgis-ltr/qgis-3.16.16/src/app/layout/
H A Dqgsreportsectionmodel.cpp136 return parentSection ? parentSection->childCount() : 0; in rowCount()
145 return parentSection && parentSection->childCount() > 0; in hasChildren()
159 if ( parentSection ) in index()
179 QgsAbstractReportSection *parentSection = childSection->parentSection(); in parent() local
181 if ( !parentSection ) in parent()
184 … return createIndex( parentSection->row(), 0, parentSection != mReport ? parentSection : nullptr ); in parent()
252 if ( row < parentSection->childCount() ) in removeRows()
254 parentSection->removeChildAt( row ); in removeRows()
266 if ( !parentSection ) in addSection()
267 parentSection = mReport; in addSection()
[all …]
/dports/graphics/qgis/qgis-3.22.3/src/app/layout/
H A Dqgsreportsectionmodel.cpp136 return parentSection ? parentSection->childCount() : 0; in rowCount()
145 return parentSection && parentSection->childCount() > 0; in hasChildren()
159 if ( parentSection ) in index()
179 QgsAbstractReportSection *parentSection = childSection->parentSection(); in parent() local
181 if ( !parentSection ) in parent()
184 … return createIndex( parentSection->row(), 0, parentSection != mReport ? parentSection : nullptr ); in parent()
252 if ( row < parentSection->childCount() ) in removeRows()
254 parentSection->removeChildAt( row ); in removeRows()
266 if ( !parentSection ) in addSection()
267 parentSection = mReport; in addSection()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Configuration/System.Configuration/
H A DDefaultSection.cs64 protected internal override void Reset (ConfigurationElement parentSection) in Reset() argument
66 base.Reset (parentSection); in Reset()
76 …protected internal override string SerializeSection (ConfigurationElement parentSection, string na… in SerializeSection() argument
78 return base.SerializeSection (parentSection, name, saveMode); in SerializeSection()
H A DIgnoreSection.cs63 protected internal override void Reset (ConfigurationElement parentSection) in Reset() argument
65 base.Reset (parentSection); in Reset()
74 …protected internal override string SerializeSection (ConfigurationElement parentSection, string na… in SerializeSection() argument
H A DConfigurationSection.cs83 …ConfigurationSection parentSection = sectionInformation != null ? sectionInformation.GetParentSect… in GetRuntimeObject()
84 object parent = parentSection != null ? parentSection.GetRuntimeObject () : null; in GetRuntimeObject()
H A DAppSettingsSection.cs89 protected internal override void Reset (ConfigurationElement parentSection) in Reset() argument
91 AppSettingsSection psec = parentSection as AppSettingsSection; in Reset()
H A DConfiguration.cs294 ConfigurationSection parentSection = null; in GetSectionInstance()
296 parentSection = parent.GetSectionInstance (config, true); in GetSectionInstance()
297 sec.SectionInformation.SetParentSection (parentSection); in GetSectionInstance()
305 sec.Reset (parentSection); in GetSectionInstance()
H A DSectionInfo.cs195 …ConfigurationSection parentSection = config.Parent != null ? config.Parent.GetSectionInstance (thi… in WriteData()
196 xml = section.SerializeSection (parentSection, Name, mode); in WriteData()
/dports/science/PETSc/petsc-3.14.1/src/dm/impls/plex/ftn-auto/
H A Dplextreef.c98 PETSC_EXTERN void dmplexsettree_(DM dm,PetscSection parentSection,PetscInt parents[],PetscInt chil… in dmplexsettree_() argument
102 (PetscSection)PetscToPointer((parentSection) ),parents,childIDs); in dmplexsettree_()
104 PETSC_EXTERN void dmplexgettree_(DM dm,PetscSection *parentSection,PetscInt *parents[],PetscInt *c… in dmplexgettree_() argument
107 (DM)PetscToPointer((dm) ),parentSection,parents,childIDs,childSection,children); in dmplexgettree_()
/dports/editors/calligra/calligra-3.2.1/braindump/src/
H A DSectionsBoxDock.cpp192 …SectionGroup* parentSection = m_view->activeSection() ? m_view->activeSection()->sectionParent() :… in slotNewSectionAboveCurrent() local
195 …ew InsertSectionCommand(m_view->rootSection()->sectionsIO(), section, parentSection, m_model, m_vi… in slotNewSectionAboveCurrent()
200 …SectionGroup* parentSection = m_view->activeSection() ? m_view->activeSection()->sectionParent() :… in slotNewSectionBellowCurrent() local
201 Section* above = parentSection->nextSection(m_view->activeSection()); in slotNewSectionBellowCurrent()
204 …ew InsertSectionCommand(m_view->rootSection()->sectionsIO(), section, parentSection, m_model, abov… in slotNewSectionBellowCurrent()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Configuration.ConfigurationManager/src/System/Configuration/
H A DIgnoreSection.cs44 protected internal override void Reset(ConfigurationElement parentSection) in Reset() argument
58 …protected internal override string SerializeSection(ConfigurationElement parentSection, string nam… in SerializeSection() argument
H A DDefaultSection.cs44 protected internal override void Reset(ConfigurationElement parentSection) in Reset() argument
58 …protected internal override string SerializeSection(ConfigurationElement parentSection, string nam… in SerializeSection() argument
H A DAppSettingsSection.cs78 protected internal override void Reset(ConfigurationElement parentSection) in Reset() argument
81 base.Reset(parentSection); in Reset()
H A DRuntimeConfigurationRecord.cs154 ConfigurationSection parentSection = (ConfigurationSection)parentConfig; in CreateSection()
155 configSection.Reset(parentSection); in CreateSection()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Configuration/System/Configuration/
H A DDefaultSection.cs43 protected internal override void Reset(ConfigurationElement parentSection) { in Reset() argument
56 …protected internal override string SerializeSection(ConfigurationElement parentSection, string nam… in SerializeSection() argument
H A DIgnoreSection.cs43 protected internal override void Reset(ConfigurationElement parentSection) { in Reset() argument
56 …protected internal override string SerializeSection(ConfigurationElement parentSection, string nam… in SerializeSection() argument
H A DAppSettingsSection.cs84 protected internal override void Reset(ConfigurationElement parentSection) { in Reset() argument
86 base.Reset(parentSection); in Reset()
/dports/www/tikiwiki/tiki-21.2/lib/core/Tiki/Config/
H A DIni.php77 $parentSection = $config[$section][self::SECTION_EXTENDS_KEY];
79 $result = $this->resolveSectionInheritance($config, $parentSection);
/dports/graphics/qgis/qgis-3.22.3/src/core/layout/
H A Dqgsreportsectionfieldgroup.h55 QgsReportSectionFieldGroup( QgsAbstractReportSection *parentSection = nullptr );
163 void setParentSection( QgsAbstractReportSection *parentSection ) override;
H A Dqgsabstractreportsection.h79 QgsAbstractReportSection( QgsAbstractReportSection *parentSection = nullptr );
116 QgsAbstractReportSection *parentSection() { return mParent; } in parentSection() function
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/layout/
H A Dqgsreportsectionfieldgroup.h55 QgsReportSectionFieldGroup( QgsAbstractReportSection *parentSection = nullptr );
163 void setParentSection( QgsAbstractReportSection *parentSection ) override;
H A Dqgsabstractreportsection.h79 QgsAbstractReportSection( QgsAbstractReportSection *parentSection = nullptr );
116 QgsAbstractReportSection *parentSection() { return mParent; } in parentSection() function
/dports/www/mediawiki135/mediawiki-1.35.5/vendor/wikimedia/parsoid/src/Wt2Html/PP/Processors/
H A DWrapSections.php77 $parentSection = count( $stack ) > 0 ? PHPUtils::lastItem( $stack ) : null;
78 if ( $parentSection ) {
80 $parentSection['container']->appendChild( $section['container'] );
/dports/devel/catch/Catch2-2.13.7/include/internal/
H A Dcatch_test_case_tracker.cpp182 SectionTracker& parentSection = static_cast<SectionTracker&>( *parent ); in SectionTracker() local
183 addNextFilters( parentSection.m_filters ); in SectionTracker()
/dports/math/e-antic/Catch2-ff349a5/include/internal/
H A Dcatch_test_case_tracker.cpp182 SectionTracker& parentSection = static_cast<SectionTracker&>( *parent ); in SectionTracker() local
183 addNextFilters( parentSection.m_filters ); in SectionTracker()

123456789