Home
last modified time | relevance | path

Searched refs:parentTable (Results 1 – 25 of 124) sorted by relevance

12345

/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/main/java/com/servingxml/util/
H A DSynchronizedNameTable.java26 private final NameTable parentTable; field in SynchronizedNameTable
29 public SynchronizedNameTable(NameTable parentTable) { in SynchronizedNameTable() argument
30 this.parentTable = parentTable; in SynchronizedNameTable()
31 this.mutableTable = new NameTableImpl(parentTable); in SynchronizedNameTable()
35 return parentTable.size() + mutableTable.size(); in size()
51 int nameSymbol = parentTable.lookupSymbol(name); in getSymbol()
71 return parentTable.getNamespace(namespaceIndex); in getNamespace()
81 if (parentTable.containsSymbol(nameSymbol)) { in lookupName()
82 name = parentTable.lookupName(nameSymbol); in lookupName()
111 name = parentTable.lookupName(symbol); in createName()
[all …]
/dports/devel/itext/itext-4.2.0/rtf/com/lowagie/text/rtf/table/
H A DRtfRow.java174 private RtfTable parentTable = null; field in RtfRow
198 this.parentTable = rtfTable; in RtfRow()
214 this.parentTable = rtfTable; in RtfRow()
287 ArrayList rows = this.parentTable.getRows(); in handleCellSpanning()
332 if(this.parentTable.getCellsFitToPage()) { in writeRowDefinition()
335 if(this.rowNumber <= this.parentTable.getHeaderRows()) { in writeRowDefinition()
338 switch (this.parentTable.getAlignment()) { in writeRowDefinition()
354 RtfBorderGroup borders =this.parentTable.getBorders(); in writeRowDefinition()
359 if(this.parentTable.getCellSpacing() > 0) { in writeRowDefinition()
375 result.write(intToByteArray((int) (this.parentTable.getCellPadding() / 2))); in writeRowDefinition()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.DynamicData/DynamicData/
H A DDynamicControlParameter.cs104 MetaTable parentTable = paramTarget.Table; in GetPrimaryKeyControlWhereParameters()
105 if (parentTable != null) { in GetPrimaryKeyControlWhereParameters()
107 foreach (var keyColumn in parentTable.PrimaryKeyColumns) { in GetPrimaryKeyControlWhereParameters()
124 MetaTable parentTable = paramTarget.Table; in GetForeignKeyControlWhereParameters()
125 if (parentTable != null) { in GetForeignKeyControlWhereParameters()
128 if (column.ColumnType != parentTable.EntityType) { in GetForeignKeyControlWhereParameters()
131 column.DisplayName, parentTable.Name)); in GetForeignKeyControlWhereParameters()
135 Debug.Assert(column.ForeignKeyNames.Count == parentTable.PrimaryKeyColumns.Count); in GetForeignKeyControlWhereParameters()
138 MetaColumn parentTablePKColumn = parentTable.PrimaryKeyColumns[index++]; in GetForeignKeyControlWhereParameters()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data/Test/System.Data/
H A DDataTableTest3.cs40 DataTable parentTable; field in MonoTests.System.Data.DataTableTest3
72 parentTable.Columns.Add (column); in MakeParentTable()
82 parentTable.Columns.Add (column); in MakeParentTable()
90 parentTable.Columns.Add (column); in MakeParentTable()
98 dataSet.Tables.Add (parentTable); in MakeParentTable()
103 row = parentTable.NewRow (); in MakeParentTable()
107 parentTable.Rows.Add (row); in MakeParentTable()
465 dataSet.Tables.Remove (parentTable); in XmlSchemaTest1()
478 VerifyTableSchema (table, parentTable.TableName, parentTable.DataSet); in XmlSchemaTest1()
486 dataSet.Tables.Remove (parentTable); in XmlSchemaTest2()
[all …]
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/Zend/Db/Table/Row/
H A DAbstract.php832 * @param Zend_Db_Table_Abstract $parentTable
838 …ntTableName = (get_class($parentTable) === 'Zend_Db_Table') ? $parentTable->getDefinitionConfigNam…
842 $parentInfo = $parentTable->info();
920 if (is_string($parentTable)) {
921 $parentTable = $this->_getTableFromString($parentTable);
925 $type = gettype($parentTable);
927 $type = get_class($parentTable);
940 $select = $parentTable->select();
942 $select->setTable($parentTable);
955 $parentInfo = $parentTable->info();
[all …]
/dports/www/matomo/piwik/libs/Zend/Db/Table/Row/
H A DAbstract.php838 * @param Zend_Db_Table_Abstract $parentTable
844 …ntTableName = (get_class($parentTable) === 'Zend_Db_Table') ? $parentTable->getDefinitionConfigNam…
848 $parentInfo = $parentTable->info();
927 if (is_string($parentTable)) {
928 $parentTable = $this->_getTableFromString($parentTable);
932 $type = gettype($parentTable);
934 $type = get_class($parentTable);
948 $select = $parentTable->select();
950 $select->setTable($parentTable);
963 $parentInfo = $parentTable->info();
[all …]
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/render/rtf/rtflib/rtfdoc/
H A DRtfTableRow.java176 final RtfTable parentTable = (RtfTable) parent; in writeRowAndCellsDefintions() local
177 adjustBorderProperties(parentTable); in writeRowAndCellsDefintions()
236 if ((parentTable != null) && (parentTable.isHighestRow(id))) { in writeRowAndCellsDefintions()
267 if ((parentTable != null) && (parentTable.isHighestRow(id))) { in writeRowAndCellsDefintions()
283 private void adjustBorderProperties(RtfTable parentTable) { in adjustBorderProperties() argument
285 if (attrib != null && parentTable != null) { in adjustBorderProperties()
288 if (isFirstRow() && parentTable.isHighestRow(id)) { in adjustBorderProperties()
294 } else if (parentTable.isHighestRow(id)) { in adjustBorderProperties()
/dports/editors/calligra/calligra-3.2.1/plugins/formulashape/elements/
H A DTableRowElement.cpp54 TableElement* parentTable = static_cast<TableElement*>( parentElement() ); in layout()
55 setHeight( parentTable->rowHeight( this ) ); in layout()
77 hOffset = ( parentTable->columnWidth( i ) - m_data[ i ]->width() ) / 2; in layout()
80 hOffset = parentTable->columnWidth( i ) - m_data[ i ]->width(); in layout()
84 origin += QPointF( parentTable->columnWidth( i ), 0.0 ); in layout()
113 TableElement* parentTable = static_cast<TableElement*>( parentElement() ); in cursorLine() local
121 hOffset+=parentTable->columnWidth(i); in cursorLine()
146 TableElement* parentTable = static_cast<TableElement*>( parentElement() ); in setCursorTo() local
149 x+=parentTable->columnWidth( i ); in setCursorTo()
/dports/finance/qtbitcointrader/QtBitcoinTrader-1.40.55/src/
H A Dorderstablecancelbutton.cpp40 parentTable = dynamic_cast<QTableView*>(parent); in OrdersTableCancelButton()
51 if (parentTable && !mainWindow.currentlyAddingOrders) in paint()
53 auto* buttonCancel = dynamic_cast<QPushButton*>(parentTable->indexWidget(index)); in paint()
60 parentTable->setIndexWidget(index, buttonCancel); in paint()
/dports/devel/eric6/eric6-21.11/eric/eric6/Graphics/
H A DGraphicsUtilities.py109 parentTable = {}
112 currentParents = parentTable.get(destinationID, [])
118 parentTable[destinationID] = currentParents
119 return childrenTable, parentTable
/dports/www/nextcloud/nextcloud/apps-pkg/dav/lib/Migration/
H A DRemoveOrphanEventsAndContacts.php76 protected function removeOrphanChildren($childTable, $parentTable, $parentId): int { argument
81 ->leftJoin('c', $parentTable, 'p', $qb->expr()->eq('c.' . $parentId, 'p.id'))
84 if (\in_array($parentTable, ['calendars', 'calendarsubscriptions'], true)) {
85 …$calendarType = $parentTable === 'calendarsubscriptions' ? CalDavBackend::CALENDAR_TYPE_SUBSCRIPTI…
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/
H A DRenderTableCol.cpp79 RenderTable* parentTable = table(); in clippedOverflowRectForRepaint() local
80 if (!parentTable) in clippedOverflowRectForRepaint()
82 return parentTable->clippedOverflowRectForRepaint(repaintContainer); in clippedOverflowRectForRepaint()
/dports/devel/arduino-core/Arduino-b439a77/app/src/cc/arduino/contributions/libraries/ui/
H A DContributedLibraryTableCellJPanel.java42 public ContributedLibraryTableCellJPanel(JTable parentTable, Object value, in ContributedLibraryTableCellJPanel() argument
197 parentTable.getBounds().width); in ContributedLibraryTableCellJPanel()
200 setBackground(parentTable.getSelectionBackground()); in ContributedLibraryTableCellJPanel()
201 setForeground(parentTable.getSelectionForeground()); in ContributedLibraryTableCellJPanel()
203 setBackground(parentTable.getBackground()); in ContributedLibraryTableCellJPanel()
204 setForeground(parentTable.getForeground()); in ContributedLibraryTableCellJPanel()
/dports/devel/arduino-core/Arduino-b439a77/app/src/cc/arduino/contributions/packages/ui/
H A DContributedPlatformTableCellJPanel.java149 void update(JTable parentTable, Object value, boolean isSelected, in update() argument
237 int width = parentTable.getBounds().width; in update()
242 setBackground(parentTable.getSelectionBackground()); in update()
243 setForeground(parentTable.getSelectionForeground()); in update()
245 setBackground(parentTable.getBackground()); in update()
246 setForeground(parentTable.getForeground()); in update()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/WebControls/
H A DTableRow.cs104 Table parentTable = parent as Table;
105 if (parentTable != null) {
106 parentTable.HasRowSections = true;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/lexpress/doctrine1/lib/Doctrine/Template/Listener/
H A DSluggable.php157 $parentTable = $record->getTable()->getOption('parents');
160 $reflectionClass = new ReflectionClass($parentTable[$i]);
163 $reflectionClass = new ReflectionClass($parentTable[$i]);
165 $table = Doctrine_Core::getTable($parentTable[$i]);
/dports/print/py-fonttools3/fonttools-3.44.0/Lib/fontTools/ttLib/tables/
H A DM_E_T_A_.py218 def compile(self, parentTable): argument
220 if parentTable.metaFlags == 0:
222 elif parentTable.metaFlags == 1:
294 def compile(self, parentTable): argument
296 if parentTable.metaFlags == 0:
298 elif parentTable.metaFlags == 1:
/dports/print/py-fonttools/fonttools-4.28.2/Lib/fontTools/ttLib/tables/
H A DM_E_T_A_.py216 def compile(self, parentTable): argument
218 if parentTable.metaFlags == 0:
220 elif parentTable.metaFlags == 1:
292 def compile(self, parentTable): argument
294 if parentTable.metaFlags == 0:
296 elif parentTable.metaFlags == 1:
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/accessibility/
H A DAccessibilityTableRow.cpp70 AccessibilityObject* table = parentTable(); in isTableRow()
91 AccessibilityObject* AccessibilityTableRow::parentTable() const in parentTable() function in WebCore::AccessibilityTableRow
H A DAccessibilityARIAGridRow.cpp56 AccessibilityObject* parent = parentTable(); in isARIATreeGridRow()
119 AccessibilityObject* AccessibilityARIAGridRow::parentTable() const in parentTable() function in WebCore::AccessibilityARIAGridRow
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/jogamp/graph/font/typecast/ot/table/
H A DGlyfDescript.java79 final GlyfTable parentTable, in GlyfDescript() argument
83 _parentTable = parentTable; in GlyfDescript()
H A DGlyfCompositeDescript.java72 final GlyfTable parentTable, in GlyfCompositeDescript() argument
75 super(parentTable, glyphIndex, (short) -1, di); in GlyfCompositeDescript()
84 final GlyfDescript desc = parentTable.getDescription(comp.getGlyphIndex()); in GlyfCompositeDescript()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/src/System/Data/
H A DRelationshipConverter.cs51 DataTable parentTable = rel.ParentKey.Table; in ConvertTo()
54 … if (string.IsNullOrEmpty(parentTable.Namespace) && string.IsNullOrEmpty(childTable.Namespace)) in ConvertTo()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/
H A DRelationshipConverter.cs51 DataTable parentTable = rel.ParentKey.Table; in ConvertTo()
54 …if (System.Data.Common.ADP.IsEmpty(parentTable.Namespace) && System.Data.Common.ADP.IsEmpty(childT… in ConvertTo()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/Filter/
H A DLookupNode.cs55 DataTable parentTable = relation.ParentTable; in Bind()
60 this.column = parentTable.Columns[columnName]; in Bind()

12345