Home
last modified time | relevance | path

Searched refs:secondCell (Results 1 – 10 of 10) sorted by relevance

/dports/math/gap/gap-4.11.0/pkg/hap-1.25/lib/TorsionSubcomplexes/
H A DreduceTorsionSubcomplexes.gi563 secondCell := pMultipleTorsionCells[n+1][j][s];
573 # " and that of ",n,"-cell numero ",secondCell[2]," is ",
579 [firstCell, secondCell, commonBoundary[1]];
604 secondCell := cellTriple[2];
614 if torsionCell in [firstCell, secondCell] then ;
666 secondCell := cellTriple[2];
674 g := getIdentifier( secondCell, boundaryCell, celldata);
717 secondCell := cellTriple[2];
722 p2:=Position(reducedTorsionCells[n+1], [n,secondCell[2]]);
726 # firstCell[2]," and ",secondCell[2],".\n");
[all …]
/dports/math/dune-multidomaingrid/dune-multidomaingrid-cd5679974fe1c91b56e74022e95f01b1d2018c3b/test/
H A Diterateallinterfaces.cc45 const Entity e2 = it->secondCell(); in iterate2()
51 const Entity e2 = it->secondCell(); in iterate2()
H A Doutput.hh57 borderCells[gv.indexSet().index(iit->secondCell())] = 2; in vtkOut()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Mapping/ViewGeneration/
H A DValidator.cs145 foreach (Cell secondCell in m_cells) in ConstructCellRelationsWithConstraints()
147 if (Object.ReferenceEquals(firstCell, secondCell)) in ConstructCellRelationsWithConstraints()
/dports/lang/newlisp/newlisp-10.7.5/
H A Dnl-liststr.c1344 CELL * secondCell; in p_swap() local
1347 secondCell = getRefCheckProtected(params->next); in p_swap()
1348 swap(&firstCell->type, &secondCell->type); in p_swap()
1349 swap(&firstCell->contents, &secondCell->contents); in p_swap()
1350 swap(&firstCell->aux, &secondCell->aux); in p_swap()
1352 return(secondCell); in p_swap()
/dports/math/dune-multidomaingrid/dune-multidomaingrid-cd5679974fe1c91b56e74022e95f01b1d2018c3b/dune/grid/multidomaingrid/
H A Dsubdomaininterfaceiterator.hh165 Entity secondCell() const { in secondCell() function in Dune::mdgrid::SubDomainInterface
/dports/lang/spidermonkey60/firefox-60.9.0/editor/libeditor/
H A DHTMLTableEditor.cpp1891 nsCOMPtr<nsIDOMElement> secondCell; in JoinTableCells() local
1892 rv = GetNextSelectedCell(nullptr, getter_AddRefs(secondCell)); in JoinTableCells()
1896 joinSelectedCells = (secondCell != nullptr); in JoinTableCells()
/dports/www/firefox-legacy/firefox-52.8.0esr/editor/libeditor/
H A DHTMLTableEditor.cpp2032 nsCOMPtr<nsIDOMElement> secondCell; in JoinTableCells() local
2033 rv = GetNextSelectedCell(nullptr, getter_AddRefs(secondCell)); in JoinTableCells()
2037 joinSelectedCells = (secondCell != nullptr); in JoinTableCells()
/dports/lang/spidermonkey78/firefox-78.9.0/editor/libeditor/
H A DHTMLTableEditor.cpp2679 RefPtr<Element> secondCell = GetNextSelectedTableCellElement(error); in JoinTableCells() local
2686 joinSelectedCells = (secondCell != nullptr); in JoinTableCells()
/dports/biology/hyphy/hyphy-2.5.33/src/core/
H A Dmatrix.cpp4815 …for (long cell = m%secondArg.vDim, secondCell = m/secondArg.vDim; cell < lDim; cell += vDim, secon… in Multiply() local
4816 storage.theData[cell] += c * theData[secondCell]; in Multiply()