Home
last modified time | relevance | path

Searched refs:newCell (Results 1 – 25 of 411) sorted by relevance

12345678910>>...17

/dports/math/saga/saga-8.1.3/saga-gis/src/tools/terrain_analysis/ta_hydrology/
H A DLakeFloodInteractive.cpp159 newCell->x = x; in On_Execute_Position()
160 newCell->y = y; in On_Execute_Position()
161 firstCell = newCell; in On_Execute_Position()
185 newCell->x = ix; in On_Execute_Position()
186 newCell->y = iy; in On_Execute_Position()
189 lastCell = newCell; in On_Execute_Position()
193 newCell = firstCell; in On_Execute_Position()
198 delete (newCell); in On_Execute_Position()
199 newCell = NULL; in On_Execute_Position()
206 delete (newCell); in On_Execute_Position()
[all …]
H A DLakeFlood.cpp164 newCell->x = it->x; in On_Execute()
165 newCell->y = it->y; in On_Execute()
166 firstCell = newCell; in On_Execute()
190 newCell->x = ix; in On_Execute()
191 newCell->y = iy; in On_Execute()
194 lastCell = newCell; in On_Execute()
198 newCell = firstCell; in On_Execute()
203 delete (newCell); in On_Execute()
204 newCell = NULL; in On_Execute()
211 delete (newCell); in On_Execute()
[all …]
/dports/devel/gorm/apps-gorm-04554d2/GormCore/
H A DGormCustomClassInspector.m188 id newCell = [[cellClass alloc] init];
200 [object setCell: newCell];
206 [newCell setFont: [cell font]];
211 [newCell setEnabled: [cell isEnabled]];
216 [newCell setEditable: [cell isEditable]];
236 [newCell setBordered: [cell isBordered]];
241 [newCell setBezeled: [cell isBezeled]];
256 [newCell setState: [cell state]];
265 [newCell setStringValue: [cell stringValue]];
270 [newCell setTitle: [cell title]];
[all …]
/dports/databases/pgadmin3/pgadmin3-1.22.2/pgadmin/debugger/
H A DctlVarWindow.cpp95 gridCell newCell; in AddVar() local
97 newCell.m_row = m_cells->size(); in AddVar()
98 newCell.m_type = type; in AddVar()
99 newCell.m_value = value; in AddVar()
103 SetRowLabelValue(newCell.m_row, key); in AddVar()
105 SetCellValue(newCell.m_row, COL_NAME, key); in AddVar()
106 SetCellValue(newCell.m_row, COL_TYPE, type); in AddVar()
107 SetCellValue(newCell.m_row, COL_VALUE, value); in AddVar()
111 SetReadOnly(newCell.m_row, COL_NAME, true); in AddVar()
112 SetReadOnly(newCell.m_row, COL_TYPE, true); in AddVar()
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/ts/misc/
H A Dperf_tests_timing.py127 tbl.newCell('module', suit['module'])
128 tbl.newCell('name', suit['name'])
129 tbl.newCell('time', formatValue(suit['time'], '', ''), suit['time'])
130 tbl.newCell('num', suit['num'])
132 tbl.newCell('failed', suit['failed'])
134 tbl.newCell('failed', ' ')
146 tbl.newCell('module', suit['module'])
147 tbl.newCell('name', suit['name'])
148 tbl.newCell('failed', suit['failed'])
H A Dsummary.py186 tbl.newCell("name", name)
201 tbl.newCell(str(i), "-")
205 tbl.newCell(str(i), status, color="red")
210 tbl.newCell(str(i), formatValue(val, options.metric, show_units), val)
221 tbl.newCell(tblCellID + "%", "-")
223 tbl.newCell(tblCellID + "$", "-")
225 tbl.newCell(tblCellID + "$", "-")
229 tbl.newCell(str(i), status, color="red")
233 tbl.newCell(tblCellID + "%", "-", color="red")
235 tbl.newCell(tblCellID + "$", "-", color="red")
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Mesh/include/
H A DitkAutomaticTopologyMeshSource.hxx126 newCell->SetPointId(0, pointIDs[0]); in AddVertex()
129 m_OutputMesh->SetCell(cellID, newCell); in AddVertex()
163 newCell->SetPointId(i, pointID); in AddLine()
171 m_OutputMesh->SetCell(cellID, newCell); in AddLine()
215 newCell->SetPointId(i, pointID); in AddTriangle()
230 m_OutputMesh->SetCell(cellID, newCell); in AddTriangle()
278 newCell->SetPointId(i, pointID); in AddQuadrilateral()
293 m_OutputMesh->SetCell(cellID, newCell); in AddQuadrilateral()
341 newCell->SetPointId(i, pointID); in AddTetrahedron()
365 m_OutputMesh->SetCell(cellID, newCell); in AddTetrahedron()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/
H A DFocusCellOwnerDrawHighlighter.java207 protected void focusCellChanged(ViewerCell newCell, ViewerCell oldCell) { in focusCellChanged() argument
208 super.focusCellChanged(newCell, oldCell); in focusCellChanged()
211 if (newCell != null) { in focusCellChanged()
212 Rectangle rect = newCell.getBounds(); in focusCellChanged()
213 int x = newCell.getColumnIndex() == 0 ? 0 : rect.x; in focusCellChanged()
214 int width = newCell.getColumnIndex() == 0 ? rect.x + rect.width in focusCellChanged()
217 newCell.getControl().redraw(x, rect.y - 1, width, rect.height + 1, in focusCellChanged()
/dports/print/scribus-devel/scribus-1.5.7/scribus/
H A Dcanvasgesture_cellselect.cpp89 TableCell newCell = table()->cellAt(m_canvas->globalToCanvas(event->globalPos()).toQPointF()); in mouseMoveEvent() local
91 if (newCell == m_endCell || !newCell.isValid() || !m_startCell.isValid()) in mouseMoveEvent()
94 m_endCell = newCell; in mouseMoveEvent()
/dports/graphics/quesoglc/quesoglc-0.7.2/src/
H A Doarray.c173 char* newCell = NULL; in __glcArrayInsertCell() local
182 newCell = This->data + inRank * This->elementSize; in __glcArrayInsertCell()
185 memmove(newCell + inCells * This->elementSize, newCell, in __glcArrayInsertCell()
190 return newCell; in __glcArrayInsertCell()
/dports/math/polymake/polymake-4.5/external/permlib/include/permlib/search/partition/
H A Dpartition.h190 vector_t& newCell = m_newCell; in intersect() local
206 newCellBeginIt = newCell.rbegin() + (partition.size() - partitionCellSize); in intersect()
208 newCell2It = newCell.begin(); in intersect()
233 std::copy(newCell.begin(), newCell.begin() + partitionCellSize, cellBeginIt); in intersect()
240 *fixIt = newCell[0]; in intersect()
245 *fixIt = newCell[partitionCellSize - 1]; in intersect()
/dports/math/permlib/PermLib-0.2.9/include/permlib/search/partition/
H A Dpartition.h190 vector_t& newCell = m_newCell; in intersect() local
207 newCellBeginIt = newCell.rbegin() + (partition.size() - partitionCellSize); in intersect()
209 newCell2It = newCell.begin(); in intersect()
234 std::copy(newCell.begin(), newCell.begin() + partitionCellSize, cellBeginIt); in intersect()
241 *fixIt = newCell[0]; in intersect()
246 *fixIt = newCell[partitionCellSize - 1]; in intersect()
/dports/games/openra/OpenRA-release-20200503/OpenRA.Mods.Common/EditorBrushes/
H A DEditorTileBrush.cs124 Action<CPos> maybeEnqueue = newCell => in FloodFillWithBrush()
126 if (map.Contains(cell) && !touched[newCell]) in FloodFillWithBrush()
128 queue.Enqueue(newCell); in FloodFillWithBrush()
129 touched[newCell] = true; in FloodFillWithBrush()
152 var newCell = refCell + direction; in FloodFillWithBrush()
153 if (!shouldPaint(newCell)) in FloodFillWithBrush()
155 refCell = newCell; in FloodFillWithBrush()
/dports/www/tikiwiki/tiki-21.2/lib/core/File/
H A DDiagramHelper.php204 $newCell = self::generateMxCell($cellAttributes, $geometryAttributes);
205 … $newCell['value'] = htmlspecialchars_decode(TikiLib::lib('parser')->parse_data($listContent));
206 $newCells[] = $newCell;
225 foreach ($newCells as $newCell) {
226 XMLHelper::appendElement($root, $newCell);
/dports/www/mediawiki135/mediawiki-1.35.5/vendor/wikimedia/parsoid/src/Wt2Html/PP/Handlers/
H A DTableFixups.php469 $newCell = null;
475 if ( $newCell ) {
476 $newCell->appendChild( $child );
500 $newCell = $ownerDoc->createElement( $cellName );
521 $newCell->setAttribute( 'about', $about );
523 $newCell->appendChild( $ownerDoc->createTextNode( $match[2] ?? '' ) );
524 $node->parentNode->insertBefore( $newCell, $node->nextSibling );
527 $newCellDP = DOMDataUtils::getDataParsoid( $newCell );
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/Analysis/inlining/
H A Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/Analysis/inlining/
H A Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/Analysis/inlining/
H A Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/Analysis/inlining/
H A Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/Analysis/inlining/
H A Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/Analysis/inlining/
H A Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/Analysis/inlining/
H A Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/Analysis/inlining/
H A Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/Analysis/inlining/
H A Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/Analysis/inlining/
H A Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];

12345678910>>...17