Home
last modified time | relevance | path

Searched refs:columnList (Results 1 – 25 of 360) sorted by relevance

12345678910>>...15

/dports/devel/staf/src/staf/stafclnt/
H A DSTAF.cpp172 currWidth += columnList[i].currTestWidth - columnList[i].minimumWidth; in incColumnTestWidths()
178 columnList[i].maxTestWidth = columnList[i].minimumWidth + in incColumnTestWidths()
192 columnList[i].currTestWidth = columnList[i].minimumWidth + in incColumnTestWidths()
215 bestEval += columnList[i].cwLineSums[columnList[i].bestTestWidth - 1]; in evalColumnWidths()
216 currEval += columnList[i].cwLineSums[columnList[i].currTestWidth - 1]; in evalColumnWidths()
224 columnList[j].bestTestWidth = columnList[j].currTestWidth; in evalColumnWidths()
894 columnList[columnList.size() - 1].currTestWidth = in printTable()
895 columnList[columnList.size() - 1].maxTestWidth; in printTable()
919 for (clIter = columnList.begin(); clIter != columnList.end();) in printTable()
940 for (clIter = columnList.begin(); clIter != columnList.end();) in printTable()
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/backend/Classes/Controller/Event/
H A DAfterPageColumnsSelectedForLocalizationEvent.php63 private $columnList; variable in TYPO3\\CMS\\Backend\\Controller\\Event\\AfterPageColumnsSelectedForLocalizationEvent
65 …public function __construct(array $columns, array $columnList, BackendLayout $backendLayout, array… argument
68 $this->columnList = $columnList;
86 return $this->columnList;
89 public function setColumnList(array $columnList): void argument
91 $this->columnList = $columnList;
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/backend/Classes/Controller/Event/
H A DAfterPageColumnsSelectedForLocalizationEvent.php63 private $columnList; variable in TYPO3\\CMS\\Backend\\Controller\\Event\\AfterPageColumnsSelectedForLocalizationEvent
65 …public function __construct(array $columns, array $columnList, BackendLayout $backendLayout, array… argument
68 $this->columnList = $columnList;
86 return $this->columnList;
89 public function setColumnList(array $columnList): void argument
91 $this->columnList = $columnList;
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/doug-martin/goqu/v9/exp/
H A Dcol.go10 type columnList struct { struct
47 return columnList{columns: cols}
58 func (cl columnList) Clone() Expression { argument
63 return columnList{columns: newExps}
66 func (cl columnList) Expression() Expression { argument
70 func (cl columnList) IsEmpty() bool { argument
74 func (cl columnList) Columns() []Expression { argument
78 func (cl columnList) Append(cols ...Expression) ColumnListExpression { argument
79 ret := columnList{}
/dports/x11-toolkits/qt5-datavis3d/kde-qtdatavis3d-5.15.2p2/src/datavisualization/data/
H A Dbaritemmodelhandler.cpp182 QStringList columnList; in resolveModel() local
252 columnList << columnRoleStr; in resolveModel()
263 m_proxy->dptr()->m_columnCategories = columnList; in resolveModel()
265 columnList = m_proxy->columnCategories(); in resolveModel()
273 m_proxyArray->append(new QBarDataRow(columnList.size())); in resolveModel()
279 for (int j = 0; j < columnList.size(); j++) { in resolveModel()
280 float value = itemValueMap[rowKey][columnList.at(j)]; in resolveModel()
282 value /= float((*matchCountMap)[rowKey][columnList.at(j)]); in resolveModel()
285 float angle = itemRotationMap[rowKey][columnList.at(j)]; in resolveModel()
294 columnLabels = columnList; in resolveModel()
[all …]
H A Dsurfaceitemmodelhandler.cpp220 QStringList columnList; in resolveModel() local
286 columnList << columnRoleStr; in resolveModel()
297 m_proxy->dptr()->m_columnCategories = columnList; in resolveModel()
299 columnList = m_proxy->columnCategories(); in resolveModel()
302 if (m_proxyArray != m_proxy->array() || columnList.size() != m_proxy->columnCount() in resolveModel()
307 m_proxyArray->append(new QSurfaceDataRow(columnList.size())); in resolveModel()
313 for (int j = 0; j < columnList.size(); j++) { in resolveModel()
314 QVector3D &itemPos = itemValueMap[rowKey][columnList.at(j)]; in resolveModel()
317 itemPos /= float((*matchCountMap)[rowKey][columnList.at(j)]); in resolveModel()
319 float divisor = float((*matchCountMap)[rowKey][columnList.at(j)]); in resolveModel()
/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/
H A DTableDerived.java89 Type[] columnTypes, HashMappedList columnList,
95 this.columnList = columnList;
96 columnCount = columnList.size();
165 td.columnList = columnList;
166 td.columnCount = columnList.size();
279 columnList = queryExpression.getColumns();
291 if (columns.length != columnList.size()) {
296 columnList.setKey(i, columns[i].name);
298 ColumnSchema col = (ColumnSchema) columnList.get(i);
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/SqlClient/SqlGen/
H A DJoinSymbol.cs42 private List<Symbol> columnList; field in System.Data.SqlClient.SqlGen.JoinSymbol
47 if (null == columnList)
49 columnList = new List<Symbol>();
51 return columnList;
53 set { columnList = value; }
/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/test/
H A DTestViewAsterisks.java147 private void createView(String viewName, String[] columnList, in createView() argument
152 if (columnList != null) { in createView()
155 for (int i = 0; i < columnList.length; ++i) { in createView()
156 colList.append('"').append(columnList[i]).append('"'); in createView()
158 if (i < columnList.length - 1) { in createView()
169 if (columnList != null) { in createView()
170 ensureTableColumns(viewName, columnList); in createView()
262 String[] columnList, String viewStatement, in checkViewTranslationAndContent() argument
266 createView(viewName, columnList, viewStatement); in checkViewTranslationAndContent()
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/
H A DSingleTablePersister.php55 $columnList[] = parent::getSelectColumnsSQL();
62 $columnList[] = $tableAlias . '.' . $discrColumn;
79 $columnList[] = $this->getSelectColumnSQL($fieldName, $subClass);
95 $columnList[] = $this->getSelectJoinColumnSQL(
109 $this->currentPersisterContext->selectColumnListSql = implode(', ', $columnList);
H A DJoinedSubclassPersister.php358 $columnList = $this->getSelectColumnsSQL();
359 $query = 'SELECT ' . $columnList
435 $columnList = array();
450 $columnList[] = $this->getSelectColumnSQL($fieldName, $class);
470 $columnList[] = $this->getSelectJoinColumnSQL(
488 $columnList[] = $tableAlias . '.' . $discrColumn;
501 $columnList[] = $this->getSelectColumnSQL($fieldName, $subClass);
519 $columnList[] = $this->getSelectJoinColumnSQL(
533 $this->currentPersisterContext->selectColumnListSql = implode(', ', $columnList);
/dports/finance/prestashop/prestashop/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/
H A DSingleTablePersister.php55 $columnList[] = parent::getSelectColumnsSQL();
64 $columnList[] = $tableAlias . '.' . $discrColumn;
81 $columnList[] = $this->getSelectColumnSQL($fieldName, $subClass);
93 $columnList[] = $this->getSelectJoinColumnSQL(
103 $this->currentPersisterContext->selectColumnListSql = implode(', ', $columnList);
H A DJoinedSubclassPersister.php369 $columnList = $this->getSelectColumnsSQL();
370 $query = 'SELECT ' . $columnList
449 $columnList = [];
465 $columnList[] = $this->getSelectColumnSQL($fieldName, $class);
481 $columnList[] = $this->getSelectJoinColumnSQL(
495 $columnList[] = $tableAlias . '.' . $discrColumn;
508 $columnList[] = $this->getSelectColumnSQL($fieldName, $subClass);
522 $columnList[] = $this->getSelectJoinColumnSQL(
532 $this->currentPersisterContext->selectColumnListSql = implode(', ', $columnList);
/dports/www/jericho-html/jericho-html-3.2/src/java/net/htmlparser/jericho/
H A DFormFields.java536 final ArrayList<Column> columnList=new ArrayList<Column>(); in initColumns()
538 formField.columnIndex=columnList.size(); in initColumns()
540 columnList.add(new Column(formField,formField.getPredefinedValues().size()==1,null)); in initColumns()
544 columnList.add(new Column(formField,true,predefinedValue)); in initColumns()
545 …if (formField.getUserValueCount()>0) columnList.add(new Column(formField,false,null)); // add a co… in initColumns()
548 columns=columnList.toArray(new Column[columnList.size()]); in initColumns()
/dports/devel/pear-Structures_DataGrid_Renderer_Console/Structures_DataGrid_Renderer_Console-0.1.1/DataGrid/Renderer/
H A DConsole.php183 $columnList = array();
185 $columnList[] = $this->_columns[$col]['label'];
188 $this->_table->setHeaders($columnList);
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtdatavis3d/examples/datavisualization/customproxy/
H A Dvariantbardataproxy.cpp129 const QStringList &columnList = m_mapping->columnCategories(); in resolveDataSet() local
142 QBarDataRow *newProxyRow = new QBarDataRow(columnList.size()); in resolveDataSet()
143 for (int i = 0; i < columnList.size(); i++) in resolveDataSet()
144 (*newProxyRow)[i].setValue(itemValueMap[rowKey][columnList.at(i)]); in resolveDataSet()
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/dbcon/execplan/
H A Dwindowfunctioncolumn.cpp334 vector<SRCP> columnList; in getColumnList() local
335 columnList.insert(columnList.end(), fFunctionParms.begin(), fFunctionParms.end()); in getColumnList()
336 columnList.insert(columnList.end(), fPartitions.begin(), fPartitions.end()); in getColumnList()
337 columnList.insert(columnList.end(), fOrderBy.fOrders.begin(), fOrderBy.fOrders.end()); in getColumnList()
340 columnList.push_back(fOrderBy.fFrame.fStart.fVal); in getColumnList()
343 columnList.push_back(fOrderBy.fFrame.fStart.fBound); in getColumnList()
346 columnList.push_back(fOrderBy.fFrame.fEnd.fVal); in getColumnList()
349 columnList.push_back(fOrderBy.fFrame.fEnd.fBound); in getColumnList()
351 return columnList; in getColumnList()
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/dbcon/execplan/
H A Dwindowfunctioncolumn.cpp334 vector<SRCP> columnList; in getColumnList() local
335 columnList.insert(columnList.end(), fFunctionParms.begin(), fFunctionParms.end()); in getColumnList()
336 columnList.insert(columnList.end(), fPartitions.begin(), fPartitions.end()); in getColumnList()
337 columnList.insert(columnList.end(), fOrderBy.fOrders.begin(), fOrderBy.fOrders.end()); in getColumnList()
340 columnList.push_back(fOrderBy.fFrame.fStart.fVal); in getColumnList()
343 columnList.push_back(fOrderBy.fFrame.fStart.fBound); in getColumnList()
346 columnList.push_back(fOrderBy.fFrame.fEnd.fVal); in getColumnList()
349 columnList.push_back(fOrderBy.fFrame.fEnd.fBound); in getColumnList()
351 return columnList; in getColumnList()
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/dbal/lib/Doctrine/DBAL/
H A DConnection.php583 $columnList = array();
588 $columnList[] = $columnName;
654 $columnList = array();
660 $columnList[] = $columnName;
666 $columnList[] = $columnName;
672 $types = $this->extractTypeValues($columnList, $types);
700 $columnList = array();
705 $columnList[] = $columnName;
721 * @param array $columnList
726 private function extractTypeValues(array $columnList, array $types) argument
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/lexpress/doctrine1/lib/Doctrine/Migration/
H A DProcess.php111 $columnList = $this->getConnection()->import->listTableColumns($column['tableName']);
112 if (isset($columnList[$column['oldColumnName']])) {
113 …mnName'] => array('name' => $column['newColumnName'], 'definition' => $columnList[$column['oldColu…
/dports/net-mgmt/aircrack-ng/aircrack-ng-1.5.2/lib/csharp/WirelessPanda/Readers/
H A DReader.cs227 List<DataColumn> columnList = new List<DataColumn>(); in getColumnsFromHashtable()
237 columnList.Add(new DataColumn(key, t)); in getColumnsFromHashtable()
245 columnList.Add(new DataColumn((string)order[i], t)); in getColumnsFromHashtable()
250 return columnList.ToArray(); in getColumnsFromHashtable()
/dports/games/gogui/Quaqua/src/ch/randelshofer/quaqua/
H A DJBrowser.java703 JList columnList = getColumnList(i); in addSelectionPath() local
705 if (!columnList.isSelectedIndex(index)) { in addSelectionPath()
733 JList columnList; in ensurePathIsVisible() local
735 columnList = getColumnList(i); in ensurePathIsVisible()
736 int index0 = columnList.getSelectedIndex(); in ensurePathIsVisible()
741 columnList.scrollRectToVisible(bounds); in ensurePathIsVisible()
2396 Component c = columnList; in mouseReleased()
2412 updateExpandedState(columnList); in mouseReleased()
2454 Component c = columnList; in mouseClicked()
2477 Component c = columnList; in mousePressed()
[all …]
/dports/www/xoops/XoopsCore25-2.5.10/htdocs/class/libraries/vendor/xoops/xmf/src/Database/
H A DTables.php142 $columnList = '';
145 $columnList .= "{$firstComma}`{$col}`";
150 $this->tables[$table]['keys']['PRIMARY']['columns'] = $columnList;
152 … $this->queue[] = "ALTER TABLE `{$this->tables[$table]['name']}` ADD PRIMARY KEY({$columnList})";
175 $columnList = '';
178 $columnList .= $firstComma . $this->quoteIndexColumnName($col);
183 $this->tables[$table]['keys'][$name]['columns'] = $columnList;
187 … $this->queue[] = "ALTER TABLE `{$this->tables[$table]['name']}` {$add} `{$name}` ({$columnList})";
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Database/Query/
H A DBulkInsertQuery.php256 $columnList = '';
259 $columnList = sprintf(
276 $columnList,
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Database/Query/
H A DBulkInsertQuery.php258 $columnList = '';
261 $columnList = sprintf(
278 $columnList,

12345678910>>...15