A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bounds checking, etc. More...
Inherits UList< T >.
Inherited by DynamicList< autoPtr< DynamicList< label > > >, DynamicList< double >, DynamicList< fileState >, DynamicList< FixedList< Type, Size > >, DynamicList< Foam::CompactSpatialTensor >, DynamicList< Foam::dynamicIndexedOctree::node >, DynamicList< Foam::fileName >, DynamicList< Foam::List< Foam::UPstream::commsStruct > >, DynamicList< Foam::List< int > >, DynamicList< Foam::PairCollisionRecord< PairType > >, DynamicList< Foam::PairCollisionRecord< vector > >, DynamicList< Foam::refinementHistory::splitCell8 >, DynamicList< Foam::SpatialTensor >, DynamicList< Foam::triFace >, DynamicList< Foam::Tuple2 >, DynamicList< Foam::WallCollisionRecord< vector > >, DynamicList< Foam::WallCollisionRecord< WallType > >, DynamicList< labelRange >, DynamicList< void *>, Field< complexVector >, Field< DType >, Field< Foam::Field< Type > >, Field< Foam::SymmTensor >, Field< LUType >, Field< PointType >, Field< symmTensor >, Field< T >, Field< tensor >, Field< TypeGrad >, BinSum< IndexType, List, CombineOp >, cellShape, DynamicList< T, SizeInc, SizeMult, SizeDiv >, face, faceToCellStencil, IOList< T >, ITstream, ListCompactIO< T, BaseType >, patchZones, ProcessorTopology< Container, ProcPatch >, pTraits< List< T > >, regionSplit, SortableList< T >, surfacePatchIOList, and surfZoneIOList.
Public Types | |
typedef SubList< T > | subList |
Declare type of subList. More... | |
Public Types inherited from UList< T > | |
typedef T | value_type |
Type of values the UList contains. More... | |
typedef T & | reference |
Type that can be used for storing into. More... | |
typedef const T & | const_reference |
Type that can be used for storing into. More... | |
typedef label | difference_type |
The type that can represent the difference between any two. More... | |
typedef label | size_type |
The type that can represent the size of a UList. More... | |
typedef T * | iterator |
Random access iterator for traversing UList. More... | |
typedef const T * | const_iterator |
Random access iterator for traversing UList. More... | |
typedef std::reverse_iterator< iterator > | reverse_iterator |
Reverse iterator for reverse traversal of UList. More... | |
typedef std::reverse_iterator< const_iterator > | const_reverse_iterator |
Reverse iterator for reverse traversal of constant UList. More... | |
Public Member Functions | |
List () | |
Null constructor. More... | |
List (const label) | |
Construct with given size. More... | |
List (const label, const T &) | |
Construct with given size and value for all elements. More... | |
List (const label, const zero) | |
Construct with given size initialising all elements to zero. More... | |
List (const List< T > &) | |
Copy constructor. More... | |
template<class T2 > | |
List (const List< T2 > &) | |
Copy constructor from list containing another type. More... | |
List (List< T > &&) | |
Move constructor. More... | |
List (List< T > &, bool reuse) | |
Construct as copy or re-use as specified. More... | |
List (const UList< T > &, const labelUList &mapAddressing) | |
Construct as subset. More... | |
template<class InputIterator > | |
List (InputIterator first, InputIterator last) | |
Construct given start and end iterators. More... | |
template<unsigned Size> | |
List (const FixedList< T, Size > &) | |
Construct as copy of FixedList<T, Size> More... | |
List (const PtrList< T > &) | |
Construct as copy of PtrList<T> More... | |
List (const SLList< T > &) | |
Construct as copy of SLList<T> More... | |
List (const UIndirectList< T > &) | |
Construct as copy of UIndirectList<T> More... | |
List (const BiIndirectList< T > &) | |
Construct as copy of BiIndirectList<T> More... | |
List (std::initializer_list< T >) | |
Construct from an initialiser list. More... | |
List (Istream &) | |
Construct from Istream. More... | |
autoPtr< List< T > > | clone () const |
Clone. More... | |
~List () | |
Destructor. More... | |
label | size () const |
Return the number of elements in the UList. More... | |
void | resize (const label) |
Alias for setSize(const label) More... | |
void | resize (const label, const T &) |
Alias for setSize(const label, const T&) More... | |
void | setSize (const label) |
Reset size of List. More... | |
void | setSize (const label, const T &) |
Reset size of List and value for new elements. More... | |
void | clear () |
Clear the list, i.e. set size to zero. More... | |
void | append (const T &) |
Append an element at the end of the list. More... | |
void | append (const UList< T > &) |
Append a List at the end of this list. More... | |
void | append (const UIndirectList< T > &) |
Append a UIndirectList at the end of this list. More... | |
void | transfer (List< T > &) |
Transfer the contents of the argument List into this list. More... | |
template<unsigned SizeInc, unsigned SizeMult, unsigned SizeDiv> | |
void | transfer (DynamicList< T, SizeInc, SizeMult, SizeDiv > &) |
Transfer the contents of the argument List into this list. More... | |
void | transfer (SortableList< T > &) |
Transfer the contents of the argument List into this list. More... | |
T & | newElmt (const label) |
Return subscript-checked element of UList. More... | |
void | shallowCopy (const UList< T > &)=delete |
Disallow implicit shallowCopy. More... | |
void | operator= (const UList< T > &) |
Assignment to UList operator. Takes linear time. More... | |
void | operator= (const List< T > &) |
Assignment operator. Takes linear time. More... | |
void | operator= (List< T > &&) |
Move assignment operator. More... | |
void | operator= (const SLList< T > &) |
Assignment to SLList operator. Takes linear time. More... | |
void | operator= (const UIndirectList< T > &) |
Assignment to UIndirectList operator. Takes linear time. More... | |
void | operator= (const BiIndirectList< T > &) |
Assignment to BiIndirectList operator. Takes linear time. More... | |
void | operator= (std::initializer_list< T >) |
Assignment to an initialiser list. More... | |
void | operator= (const T &) |
Assignment of all entries to the given value. More... | |
void | operator= (const zero) |
Assignment of all entries to zero. More... | |
Public Member Functions inherited from UList< T > | |
UList () | |
Null constructor. More... | |
UList (T *__restrict__ v, label size) | |
Construct from components. More... | |
label | fcIndex (const label i) const |
Return the forward circular index, i.e. the next index. More... | |
label | rcIndex (const label i) const |
Return the reverse circular index, i.e. the previous index. More... | |
std::streamsize | byteSize () const |
Return the binary size in number of characters of the UList. More... | |
const T * | cdata () const |
Return a const pointer to the first data element,. More... | |
T * | data () |
Return a pointer to the first data element,. More... | |
T & | first () |
Return the first element of the list. More... | |
const T & | first () const |
Return first element of the list. More... | |
T & | last () |
Return the last element of the list. More... | |
const T & | last () const |
Return the last element of the list. More... | |
void | checkStart (const label start) const |
Check start is within valid range (0 ... size-1) More... | |
void | checkSize (const label size) const |
Check size is within valid range (0 ... size) More... | |
void | checkIndex (const label i) const |
Check index i is within valid range (0 ... size-1) More... | |
void | shallowCopy (const UList< T > &) |
Copy the pointer held by the given UList. More... | |
void | deepCopy (const UList< T > &) |
Copy elements of the given UList. More... | |
T & | operator[] (const label) |
Return element of UList. More... | |
const T & | operator[] (const label) const |
Return element of constant UList. More... | |
operator const Foam::List< T > & () const | |
Allow cast to a const List<T>&. More... | |
void | operator= (const T &) |
Assignment of all entries to the given value. More... | |
void | operator= (const zero) |
Assignment of all entries to zero. More... | |
iterator | begin () |
Return an iterator to begin traversing the UList. More... | |
iterator | end () |
Return an iterator to end traversing the UList. More... | |
const_iterator | cbegin () const |
Return const_iterator to begin traversing the constant UList. More... | |
const_iterator | cend () const |
Return const_iterator to end traversing the constant UList. More... | |
const_iterator | begin () const |
Return const_iterator to begin traversing the constant UList. More... | |
const_iterator | end () const |
Return const_iterator to end traversing the constant UList. More... | |
reverse_iterator | rbegin () |
Return reverse_iterator to begin reverse traversing the UList. More... | |
reverse_iterator | rend () |
Return reverse_iterator to end reverse traversing the UList. More... | |
const_reverse_iterator | crbegin () const |
Return const_reverse_iterator to begin reverse traversing the UList. More... | |
const_reverse_iterator | crend () const |
Return const_reverse_iterator to end reverse traversing the UList. More... | |
const_reverse_iterator | rbegin () const |
Return const_reverse_iterator to begin reverse traversing the UList. More... | |
const_reverse_iterator | rend () const |
Return const_reverse_iterator to end reverse traversing the UList. More... | |
label | size () const |
Return the number of elements in the UList. More... | |
label | max_size () const |
Return size of the largest possible UList. More... | |
bool | empty () const |
Return true if the UList is empty (ie, size() is zero) More... | |
void | swap (UList< T > &) |
Swap two ULists of the same type in constant time. More... | |
bool | operator== (const UList< T > &) const |
Equality operation on ULists of the same type. More... | |
bool | operator!= (const UList< T > &) const |
The opposite of the equality operation. Takes linear time. More... | |
bool | operator< (const UList< T > &) const |
Compare two ULists lexicographically. Takes linear time. More... | |
bool | operator> (const UList< T > &) const |
Compare two ULists lexicographically. Takes linear time. More... | |
bool | operator<= (const UList< T > &) const |
Return true if !(a > b). Takes linear time. More... | |
bool | operator>= (const UList< T > &) const |
Return true if !(a < b). Takes linear time. More... | |
template<> | |
const bool & | operator[] (const label i) const |
Static Public Member Functions | |
static const List< T > & | null () |
Return a null List. More... | |
Static Public Member Functions inherited from UList< T > | |
static const UList< T > & | null () |
Return a null UList. More... | |
Protected Member Functions | |
void | size (const label) |
Override size to be inconsistent with allocated storage. More... | |
Friends | |
Istream & | operator>> (Istream &, List< T > &) |
Read List from Istream, discarding contents of existing List. More... | |
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bounds checking, etc.
Storage is allocated on free-store during construction.
Definition at line 59 of file HashTable.H.
List | ( | const UList< T > & | a, |
const labelUList< T > & | mapAddressing | ||
) |
List | ( | InputIterator | first, |
InputIterator | last | ||
) |
|
explicit |
|
explicit |
|
inlineprotected |
Override size to be inconsistent with allocated storage.
Use with care
Definition at line 164 of file ListI.H.
Referenced by preserveBafflesConstraint::add(), extendedEdgeMesh::add(), polyTopoChange::addCell(), cellTable::addCellZones(), surfaceZonesInfo::addCellZonesToMesh(), addPatchCellLayer::addedCells(), mapPatchChange::addedPatches(), surfaceZonesInfo::addFaceZonesToMesh(), edgeSurface::addIntersectionEdges(), snappyLayerDriver::addLayers(), polyTopoChange::addMesh(), polyMesh::addPatches(), faceZoneSet::addSet(), effectivenessHeatExchangerSource::addSup(), polyTopoChanger::addTopologyModifiers(), fileMonitor::addWatch(), regIOobject::addWatch(), fileMonitorWatcher::addWatch(), MeshedSurface< Foam::face >::addZones(), polyMesh::addZones(), singleCellFvMesh::agglomerate(), GAMGInterface::agglomerateCoeffs(), GAMGAgglomeration::agglomerateLduAddressing(), extendedEdgeMesh::allNearestFeaturePoints(), UPstream::allocateCommunicator(), AMIInterpolation::AMIInterpolation(), blockEdge::appendEndPoints(), directMethod::appendToDirectSeeds(), setToCellZone::applyToSet(), faceZoneToFaceZone::applyToSet(), setToPointZone::applyToSet(), setToFaceZone::applyToSet(), setAndNormalToFaceZone::applyToSet(), setsToFaceZone::applyToSet(), face::area(), face::areaInContact(), LduMatrix< Type, DType, LUType >::asymmetric(), lduMatrix::asymmetric(), snappySnapDriver::avgCellCentres(), meshRefinement::baffleAndSplitMesh(), binaryTree< ThermoType >::balance(), meshRefinement::balance(), meshRefinement::balanceAndRefine(), Foam::bandCompression(), binaryTree< ThermoType >::binaryTreeSearch(), bladeModel::bladeModel(), blockDescriptor::blockDescriptor(), booleanSurface::booleanSurface(), GeometricField< Type, PatchField, GeoMesh >::Boundary::Boundary(), searchableExtrudedCircle::boundingSpheres(), searchableSurfaceCollection::boundingSpheres(), searchableSurfacesQueries::bounds(), tetherPotentialList::buildPotentials(), pairPotentialList::buildPotentials(), PatchTools::calcBounds(), faceZone::calcCellLayers(), primitiveMesh::calcCells(), enrichedPatch::calcEnrichedFaces(), faceCoupleInfo::calcFacePointAverages(), CentredFitSnGradData< Polynomial >::calcFit(), FitData< CentredFitSnGradData< Polynomial >, extendedCentredCellToFaceStencil, Polynomial >::calcFit(), fixedCoeff::calcForce(), powerLaw::calcForce(), DarcyForchheimer::calcForce(), powerLawLopesdaCosta::calcForce(), solidification::calcForce(), forces::calcForcesMoment(), faceLimitedGrad< Type >::calcGrad(), triSurfaceSearch::calcInside(), triSurfaceTools::calcInterpolationWeights(), TDILUPreconditioner< Type, DType, LUType >::calcInvD(), cellMatcher::calcLocalFaces(), zone::calcLookupMap(), mappedPatchBase::calcMapping(), lineCell::calcMidPointSample(), snappySnapDriver::calcNearestSurface(), polyLine::calcParam(), interpolationCellPointWallModified< Type >::calcPointField(), primitiveMesh::calcPointOrder(), createShellMesh::calcPointRegions(), DICPreconditioner::calcReciprocalD(), DILUPreconditioner::calcReciprocalD(), lineFace::calcSamples(), addPatchCellLayer::calcSidePatch(), snappySnapDriver::calcSnapDistance(), fixedCoeff::calcTransformModelData(), DarcyForchheimer::calcTransformModelData(), directAMI::calculate(), mapNearestAMI::calculate(), rotorDiskSource::calculate(), mapNearestMethod::calculateAddressing(), meshRefinement::calculateEdgeWeights(), GAMGAgglomeration::calculateRegionMaster(), pointMVCWeight::calcWeights(), edgeMesh::canRead(), tetOverlapVolume::cellCellOverlapMinDecomp(), tetOverlapVolume::cellCellOverlapVolumeMinDecomp(), heThermo< BasicSolidThermo, MixtureType >::cellSetProperty(), hexRef8::cellShapes(), polyMeshTetDecomposition::cellTetIndices(), face::centre(), cellModel::centre(), repatchPolyTopoChanger::changeAnchorPoint(), polyTopoChange::changeMesh(), repatchPolyTopoChanger::changePatchID(), layerAdditionRemoval::changeTopology(), faceZone::checkAddressing(), primitiveMesh::checkCellsZipUp(), primitiveMesh::checkClosedBoundary(), primitiveMesh::checkCommonOrder(), Foam::PstreamGlobals::checkCommunicator(), primitiveMesh::checkDuplicateFaces(), triSurface::checkEdges(), Foam::polyMeshCheck::checkFaceFlatness(), primitiveMesh::checkFaceOrthogonality(), MeshedSurface< Foam::face >::checkFaces(), Foam::polyMeshCheck::checkFaceTwist(), primitiveMesh::checkFaceVertices(), searchableSurfaces::checkIntersection(), hexRef8::checkMesh(), edgeCollapser::checkMeshQuality(), Foam::checkNonManifoldEdge(), searchableSurfaces::checkNormalOrientation(), PatchTools::checkOrientation(), MeshZones< cellZone, polyMesh >::checkParallelSync(), polyBoundaryMesh::checkParallelSync(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::checkPointManifold(), primitiveMesh::checkPointNearness(), hexRef8::checkRefinementLevels(), GAMGAgglomeration::checkRestriction(), ReactingCloud< Foam::DSMCCloud >::checkSuppliedComposition(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::checkTopology(), triSurface::checkTriangles(), Foam::polyMeshCheck::checkTriangleTwist(), primitiveMesh::checkUpperTriangular(), MeshedSurface< Foam::face >::checkZones(), surfMesh::checkZones(), ensightPartFaces::classify(), extendedEdgeMesh::classifyEdge(), extendedEdgeMesh::classifyFeaturePoint(), refinementHistory::clone(), cellShape::collapsedFaces(), triSurfaceTools::collapseEdges(), extendedCellToFaceStencil::collectData(), extendedFaceToCellStencil::collectData(), mappedPatchBase::collectSamples(), CollisionRecordList< vector, vector >::CollisionRecordList(), commSchedule::commSchedule(), UPstream::commsStruct::commsStruct(), mapDistributeBase::compact(), refinementHistory::compact(), CompactListList< T, Container >::CompactListList(), face::compare(), edgeCollapser::consistentCollapse(), hexRef8::consistentSlowRefinement(), hexRef8::consistentSlowRefinement2(), molecule::constantProperties::constantProperties(), limitVelocity::constrain(), limitTemperature::constrain(), fixedTemperatureConstraint::constrain(), ListCompactIO< face, label >::convertFromCompact(), ListCompactIO< face, label >::convertToCompact(), vtkPVFoam::convertVolInternalField(), polyMeshFilter::copyMesh(), Foam::MULES::correct(), patchEjection::correct(), EDC::correct(), particle< Type >::correctAfterParallelTransfer(), cellDistFuncs::correctBoundaryPointCells(), waxSolventEvaporation::correctModel(), ReactingParcel< ParcelType >::correctSurfaceValues(), removePoints::countPointUsage(), cyclicPolyPatch::coupledEdges(), globalMeshData::coupledPatchMeshEdgeMap(), cyclicPolyPatch::coupledPoints(), Foam::cp(), meshRefinement::createBaffles(), Keyed< T >::createList(), createShellMesh::createShellMesh(), meshRefinement::createZoneBaffles(), STARCD::cullPoints(), curvatureSeparation::curvatureSeparation(), hexCellLooper::cut(), geomCellLooper::cut(), cuttingPlane::cut(), topoCellLooper::cut(), Foam::meshTools::cutDirToEdge(), Foam::cwd(), cyclicAMIGAMGInterface::cyclicAMIGAMGInterface(), cyclicGAMGInterface::cyclicGAMGInterface(), cyclicTransform::cyclicTransform(), noDecomp::decompose(), manualDecomp::decompose(), structuredDecomp::decompose(), simpleGeomDecomp::decompose(), multiLevelDecomp::decompose(), decompositionMethod::decompose(), hierarchGeomDecomp::decompose(), triSurfaceTools::delaunay2D(), cellZoneSet::deleteSet(), pointZoneSet::deleteSet(), faceZoneSet::deleteSet(), cyclicFvPatch::delta(), cyclicAMIFvPatch::delta(), LduMatrix< Type, DType, LUType >::diagonal(), lduMatrix::diagonal(), dimensionSets::dimensionSets(), fvMeshDistribute::distribute(), refinementHistory::distribute(), mapDistributeBase::distribute(), distributedTriSurfaceMesh::distribute(), mapDistribute::distribute(), Foam::dlLoaded(), snappyLayerDriver::doLayers(), meshRefinement::doRemovePoints(), meshRefinement::doRestorePoints(), meshRefinement::dumpIntersections(), Foam::duplicateOrder(), Reaction< ReactionThermo >::dwdc(), dynamicCodeContext::dynamicCodeContext(), dynamicMeshPointInterpolator::dynamicMeshPointInterpolator(), dynamicRefineFvMesh::dynamicRefineFvMesh(), extendedEdgeMesh::edgeBaffles(), primitiveMesh::edgeFaces(), extendedEdgeMesh::edgeNormals(), PatchTools::edgeOwner(), cellModel::edges(), face::edges(), triSurfaceTools::edgeSide(), edgeSurface::edgeSurface(), directionInfo::edgeToFaceIndex(), triSurfaceMesh::edgeTree(), waveSuperposition::elevation(), globalIndexAndTransform::encodeTransformIndex(), energyJumpAMIFvPatchScalarField::energyJumpAMIFvPatchScalarField(), energyJumpFvPatchScalarField::energyJumpFvPatchScalarField(), directionInfo::enterDomain(), ListHashTable< T, Key, Hash >::erase(), mapDistributeBase::exchangeAddressing(), ifeqEntry::execute(), extendedEdgeMesh::extendedEdgeMesh(), extendedFeatureEdgeMesh::extendedFeatureEdgeMesh(), extendedUpwindCellToFaceStencil::extendedUpwindCellToFaceStencil(), triSurfaceMesh::extractCloseness(), triSurfaceMesh::extractPointCloseness(), extrudePatchMesh::extrudePatchMesh(), faceCoupleInfo::faceCoupleInfo(), primitiveMesh::faceEdges(), primitiveMeshTools::faceFlatness(), fvMeshSubset::faceFlipMap(), lduMatrix::faceH(), LduMatrix< Type, DType, LUType >::faceH(), hexRef8::faceLevel(), mappedPatchBase::facePoint(), FacePostProcessing< CloudType >::FacePostProcessing(), cellModel::faces(), hexMatcher::faceSizeMatch(), prismMatcher::faceSizeMatch(), pyrMatcher::faceSizeMatch(), tetWedgeMatcher::faceSizeMatch(), tetMatcher::faceSizeMatch(), wedgeMatcher::faceSizeMatch(), polyMeshTetDecomposition::faceTetIndices(), OppositeFaceCellWave< Type, TrackingData >::faceToCell(), PrimitivePatchInterpolation< Foam::PrimitivePatch >::faceToEdgeInterpolate(), tetIndices::faceTriIs(), featureEdgeMesh::featureEdgeMesh(), extendedEdgeMesh::featurePointNormals(), Foam::fftRenumberRecurse(), cellClassification::fillRegionEdges(), refinementSurfaces::findAllHigherIntersections(), searchableSurfacesQueries::findAllIntersections(), searchableSurfacesQueries::findAnyIntersection(), refinementParameters::findCells(), Time::findClosestTime(), patchProbes::findElements(), Foam::findEtcFile(), polyMeshTetDecomposition::findFaceBasePts(), refinementSurfaces::findHigherIntersection(), cellVolumeWeightMethod::findInitialSeeds(), mapNearestMethod::findInitialSeeds(), directMethod::findInitialSeeds(), refinementSurfaces::findInside(), fileOperation::findInstance(), masterUncollatedFileOperation::findInstance(), triSurfaceSearch::findLine(), searchablePlane::findLine(), searchableSphere::findLine(), searchablePlate::findLine(), searchableDisk::findLine(), searchableCylinder::findLine(), searchableSurfaceWithGaps::findLine(), searchableSurfaceCollection::findLine(), searchableBox::findLine(), triSurfaceSearch::findLineAll(), searchablePlane::findLineAll(), searchableSphere::findLineAll(), searchablePlate::findLineAll(), searchableDisk::findLineAll(), searchableCylinder::findLineAll(), searchableSurfaceWithGaps::findLineAll(), searchableSurfaceCollection::findLineAll(), searchableBox::findLineAll(), distributedTriSurfaceMesh::findLineAll(), triSurfaceSearch::findLineAny(), searchableSphere::findLineAny(), searchableCylinder::findLineAny(), searchableBox::findLineAny(), mapNearestMethod::findMappedSrcCell(), triSurfaceRegionSearch::findNearest(), searchableSurfacesQueries::findNearest(), searchableExtrudedCircle::findNearest(), triSurfaceSearch::findNearest(), searchablePlane::findNearest(), searchableSphere::findNearest(), searchablePlate::findNearest(), searchableDisk::findNearest(), searchableCylinder::findNearest(), searchableBox::findNearest(), distributedTriSurfaceMesh::findNearest(), dynamicIndexedOctree< Foam::dynamicTreeDataPoint >::findNearest(), indexedOctree< Foam::treeDataFace >::findNearest(), mapNearestMethod::findNearestCell(), primitiveMesh::findNearestCell(), refinementFeatures::findNearestEdge(), searchableSurfacesQueries::findNearestIntersection(), refinementSurfaces::findNearestIntersection(), refinementFeatures::findNearestPoint(), refinementSurfaces::findNearestRegion(), refinementFeatures::findNearestRegionEdge(), searchableExtrudedCircle::findParametricNearest(), mappedPatchBase::findSamples(), polyMeshTetDecomposition::findTet(), pointToPointPlanarInterpolation::findTime(), extendedEdgeMesh::flipNormals(), fluxLimitedLangmuirHinshelwoodReactionRate::fluxLimitedLangmuirHinshelwoodReactionRate(), faceCorrectedSnGrad< Type >::fullGradCorrection(), GAMGSolver::GAMGSolver(), globalIndex::gather(), lduPrimitiveMesh::gather(), PatchTools::gatherAndMerge(), GAMGAgglomeration::gatherList(), Pstream::gatherList(), genericFvPatchField< Type >::genericFvPatchField(), genericPointPatchField< Type >::genericPointPatchField(), Foam::polyMeshCheck::getAffectedCells(), searchableSurfaceCollection::getField(), triSurfaceMesh::getField(), distributedTriSurfaceMesh::getField(), surfaceFieldValue::getFieldValues(), edgeMeshFormatsCore::getLineNoComment(), surfaceFormatsCore::getLineNoComment(), meshRefinement::getMasterEdges(), meshRefinement::getMasterPoints(), combineFaces::getMergeSets(), repatchMesh::getNearest(), searchablePlane::getNormal(), searchableExtrudedCircle::getNormal(), searchableSphere::getNormal(), searchablePlate::getNormal(), searchableDisk::getNormal(), searchableCylinder::getNormal(), searchableSurfaceCollection::getNormal(), searchableBox::getNormal(), triSurfaceMesh::getNormal(), distributedTriSurfaceMesh::getNormal(), correctorConvergenceControl::getNTypeSolves(), combineFaces::getOutsideFace(), cellDistFuncs::getPointNeighbours(), searchablePlane::getRegion(), searchableExtrudedCircle::getRegion(), searchableSphere::getRegion(), searchablePlate::getRegion(), searchableDisk::getRegion(), searchableCylinder::getRegion(), searchableSurfaceCollection::getRegion(), searchableBox::getRegion(), triSurfaceMesh::getRegion(), distributedTriSurfaceMesh::getRegion(), hexRef8::getSplitPoints(), removePoints::getUnrefimentSet(), cellLooper::getVertEdgesNonFace(), triSurfaceTools::getVertexTriangles(), cellLooper::getVertFacesNonEdge(), searchableSphere::getVolumeType(), searchableCylinder::getVolumeType(), searchableBox::getVolumeType(), triSurfaceMesh::getVolumeType(), addPatchCellLayer::globalEdgeFaces(), triSurfaceTools::greenRefine(), chemPointISAT< ThermoType >::grow(), lduMatrix::H(), lduMatrix::H1(), FaceCellWave< Type, TrackingData >::handleAMICyclicPatches(), mapPolyMesh::hasMotionPoints(), waveSuperposition::height(), hexRef8::hexRef8(), particle< Type >::hitCyclicPatch(), Distribution< Type >::index(), indexedOctree< Foam::treeDataFace >::indexedOctree(), FreeStream< CloudType >::inflow(), ejectionModelList::info(), transferModelList::info(), LduMatrix< Type, DType, LUType >::initMatrixInterfaces(), lduMatrix::initMatrixInterfaces(), distribution::insertMissingKeys(), correlationFunction< Type >::integral(), FieldFunction1< Type, Sine< Type > >::integral(), linearInterpolationWeights::integrationWeights(), fvMeshSubset::interpolate(), interpolationCellPointFace< Type >::interpolate(), fieldInterpolation< scalar, interpolationCellPoint< scalar > >::interpolate(), singleCellFvMesh::interpolate(), Foam::interpolatePointToCell(), Foam::interpolateSplineXY(), lookupProfile::interpolateWeights(), bladeModel::interpolateWeights(), interpolationLookUpTable::interpolationLookUpTable(), meshToMesh::interpolationMethodAMI(), intersectedSurface::intersectedSurface(), gradingDescriptors::inv(), cylindrical::invTransform(), hexMatcher::isA(), prismMatcher::isA(), pyrMatcher::isA(), tetMatcher::isA(), tetWedgeMatcher::isA(), wedgeMatcher::isA(), ensightPart::isFieldDefined(), meshRefinement::isNormalGap(), isoSurface::isoSurface(), heSolidThermo< BasicSolidThermo, MixtureType >::Kappa(), liquidMixtureProperties::kappa(), Foam::kShellIntegration(), Foam::kShellMean(), cell::labels(), noiseFFT::Ldelta(), lduPrimitiveMesh::lduPrimitiveMesh(), Foam::levelSetFraction(), Foam::MULES::limiter(), Foam::MULES::limiterCorr(), lineDivide::lineDivide(), Pstream::listCombineGather(), basicThermo::lookupCstrIter(), fileOperation::lookupProcessorsPath(), lookupProfile::lookupProfile(), cellCuts::loopPoints(), LUscalarMatrix::LUscalarMatrix(), cellModel::mag(), primitiveMesh::makeFaceCentresAndAreas(), epsilonWallFunctionFvPatchScalarField::manipulateMatrix(), omegaWallFunctionFvPatchScalarField::manipulateMatrix(), Field< PointType >::map(), meshToMesh::mapAndOpTgtToSrc(), mapDistribute::mapDistribute(), mapDistributeBase::mapDistributeBase(), fvMesh::mapFields(), Foam::MapLagrangianFields(), mappedPatchFieldBase< Type >::mappedField(), meshToMesh::mapSrcToTgt(), fvMeshAdder::MapSurfaceFields(), meshToMesh::mapTgtToSrc(), fvMeshAdder::MapVolFields(), edgeCollapser::markMergeEdges(), PatchTools::markZone(), triSurface::markZone(), PatchTools::markZones(), triSurface::markZones(), meshToMeshMethod::maskCells(), momentOfInertia::massPropertiesShell(), momentOfInertia::massPropertiesSolid(), masterUncollatedFileOperation::masterOp(), degenerateMatcher::match(), Foam::matchPoints(), conformalVoronoiMesh::maxSurfaceProtrusion(), noiseFFT::meanPf(), distribution::median(), Distribution< Type >::median(), cellToCellStencil::merge(), cellToFaceStencil::merge(), edgeIntersections::merge(), meshRefinement::mergeBaffles(), edgeMesh::mergeEdges(), meshRefinement::mergeEdgesUndo(), edgeMesh::mergePoints(), triSurfaceTools::mergePoints(), globalMeshData::mergePoints(), fileOperation::mergeTimes(), snappySnapDriver::mergeZoneBaffles(), globalMeshData::mesh(), cellShape::meshEdges(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::meshEdges(), MeshedSurface< Foam::face >::MeshedSurface(), cellShape::meshFaces(), momentOfInertia::meshInertia(), meshTriangulation::meshTriangulation(), extendedEdgeMesh::minDisconnectedDist(), Foam::minDist(), edgeIntersections::minEdgeLength(), SVD::minNonZeroS(), polyMeshTetDecomposition::minQuality(), attachDetach::modifyMotionPoints(), slidingInterface::modifyMotionPoints(), molecule::molecule(), Cloud< passiveParticle >::move(), regionModel1D::moveMesh(), polyTopoChange::movePoints(), primitiveMesh::movePoints(), Foam::multiply(), phaseProperties::name(), NamedEnum< compressibleField, 8 >::names(), polyBoundaryMesh::nbrEdges(), surfaceFeatures::nearestEdges(), surfaceFeatures::nearestFeatEdge(), extendedEdgeMesh::nearestFeatureEdge(), face::nearestPointClassify(), surfaceFeatures::nearestSamples(), surfaceFeatures::nearestSurfEdge(), cellModel::nEdges(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::nEdges(), primitiveMesh::nEdges(), sootModel::New(), combustionModel::New(), cellModel::nFaces(), surfMesh::nFaces(), vtkMesh::nFieldCells(), vtkMesh::nFieldPoints(), potential::nIds(), surfaceFeatures::nInternalEdges(), noiseFFT::noiseFFT(), cellCuts::nonAnchorPoints(), nonBlockingGaussSeidelSmoother::nonBlockingGaussSeidelSmoother(), surfaceLocation::normal(), distribution::normalisedShifted(), surfMesh::nPoints(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::nPoints(), UPstream::nProcs(), refinementSurfaces::nRegions(), polyLine::nSegments(), molecule::constantProperties::nSites(), writeObjectsBase::objectNames(), projectVertex::operator point(), minEqOpFace::operator()(), minEqOp< labelPair >::operator()(), listPlusEqOp< T >::operator()(), ListPlusEqOp< T, Size >::operator()(), faceEqOp< T, CombineOp >::operator()(), inversePointDistanceDiffusivity::operator()(), ListAppendEqOp< T >::operator()(), offsetOp< face >::operator()(), LduMatrix< Type, DType, LUType >::operator*=(), lduMatrix::operator*=(), labelRanges::const_iterator::operator++(), lduMatrix::operator/=(), Foam::operator<<(), CompactIOField< Type, BaseType >::operator=(), cellTable::operator=(), DynamicField< T, SizeInc, SizeMult, SizeDiv >::operator=(), Foam::operator==(), Foam::operator>>(), cell::opposingFace(), cell::opposingFaceLabel(), coupledPolyPatch::order(), orientedSurface::orient(), triSurfaceTools::otherFace(), distributedTriSurfaceMesh::overlappingSurface(), dynamicIndexedOctree< Foam::dynamicTreeDataPoint >::overlaps(), indexedOctree< Foam::treeDataFace >::overlaps(), InflationInjection< CloudType >::parcelsToInject(), argList::parse(), Foam::parseNASCoord(), ParticleCollector< CloudType >::ParticleCollector(), patchEjection::patchEjectedMassTotals(), patchEjection::patchEjection(), fvFieldDecomposer::patchFieldDecomposer::patchFieldDecomposer(), patchInteractionDataList::patchInteractionDataList(), pairPatchAgglomeration::patchLevel(), AMIInterpolation::patchMagSf(), patchZones::patchZones(), noiseFFT::Pdelta(), SprayCloud< Foam::DSMCCloud >::penetration(), waveSuperposition::pGas(), waveSuperposition::pLiquid(), primitiveMesh::pointCells(), pointFieldReconstructor::pointFieldReconstructor(), polyMesh::pointInCell(), pointMVCWeight::pointMVCWeight(), PatchTools::pointNormals(), primitiveMesh::pointPoints(), cell::points(), PrimitivePatchInterpolation< Foam::PrimitivePatch >::pointToFaceInterpolate(), polyAddFace::polyAddFace(), polyMesh::polyMesh(), Foam::polyMeshUnMergeCyclics(), Foam::polyMeshZipUpCells(), polyModifyFace::polyModifyFace(), porousBafflePressureFvPatchField< Type >::porousBafflePressureFvPatchField(), projectCurveEdge::position(), projectEdge::position(), blockEdge::position(), powerLawLopesdaCostaZone::powerLawLopesdaCostaZone(), noPreconditioner::precondition(), DICPreconditioner::precondition(), DILUPreconditioner::precondition(), diagonalPreconditioner::precondition(), GAMGPreconditioner::precondition(), FDICPreconditioner::precondition(), DILUPreconditioner::preconditionT(), Foam::preservePatchTypes(), waveSuperposition::pressure(), dynamicIndexedOctree< Foam::dynamicTreeDataPoint >::print(), indexedOctree< Foam::treeDataFace >::print(), fvMeshDistribute::printCoupleInfo(), fvMeshDistribute::printFieldInfo(), vtkUnstructuredReader::printFieldStats(), fvMeshDistribute::printMeshInfo(), GAMGProcAgglomeration::printStats(), Foam::printTable(), GAMGAgglomeration::procAgglomerateRestrictAddressing(), processorGAMGInterface::processorGAMGInterface(), collatedFileOperation::processorsDir(), faceAreaWeightAMI::processSourceFace(), particle< Type >::procTetPt(), projectFace::project(), projectCurveEdge::projectCurveEdge(), projectEdge::projectEdge(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::projectFaceCentres(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::projectPoints(), projectVertex::projectVertex(), polygonTriangulate::randomPolygon(), specieCoeffs::reactionStr(), NASedgeFormat::read(), OBJsurfaceFormat< Face >::read(), NASsurfaceFormat< Face >::read(), OBJedgeFormat::read(), VTKedgeFormat::read(), VTKsurfaceFormat< Face >::read(), TRIsurfaceFormat< Face >::read(), Fickian< unityLewisFourier< laminarThermophysicalTransportModel > >::read(), STARCDsurfaceFormat< Face >::read(), STARCDedgeFormat::read(), STLsurfaceFormat< Face >::read(), ISstream::read(), writeObjectsBase::read(), MaxwellStefan< unityLewisFourier< laminarThermophysicalTransportModel > >::read(), regIOobject::read(), repatchMesh::read(), refinementHistory::read(), STARCD::readBoundary(), STARCD::readCells(), ReactingParcel< ParcelType >::readFields(), ReactingMultiphaseParcel< ParcelType >::readFields(), functionObjectList::readFunctionObject(), regIOobject::readHeaderOk(), mappedPatchBase::readListOrField(), decomposedBlockData::readMasterHeader(), repatchMesh::readTriSurface(), surfMesh::readUpdate(), polyMesh::readUpdate(), ensightParts::recalculate(), mapDistributeBase::receive(), InteractionLists< typename CloudType::parcelType >::receiveReferredData(), ensightPart::reconstruct(), processorMeshes::reconstructPoints(), triSurfaceTools::redGreenRefine(), PFA< ThermoType >::reduceMechanism(), DAC< ThermoType >::reduceMechanism(), DRGEP< ThermoType >::reduceMechanism(), referredWallFace::referredWallFace(), refinementHistory::refinementHistory(), regionCoupledBaseGAMGInterface::regionCoupledBaseGAMGInterface(), searchableSurfaceCollection::regions(), edgeMesh::regions(), fvMatrix< Type >::relax(), MeshedSurface< Foam::face >::remapFaces(), polyTopoChange::removeCell(), dynamicIndexedOctree< Foam::dynamicTreeDataPoint >::removeIndex(), undoableMeshCutter::removeSplitFaces(), randomRenumber::renumber(), zoltanRenumber::renumber(), manualRenumber::renumber(), SloanRenumber::renumber(), springRenumber::renumber(), structuredRenumber::renumber(), renumberMethod::renumber(), snappySnapDriver::repatchToSurface(), cyclicACMIPolyPatch::resetAMI(), logFiles::resetNames(), polyMesh::resetPrimitives(), lduMatrix::residual(), refinementHistory::resize(), faceAreaWeightAMI::restartUncoveredSourceFace(), GAMGAgglomeration::restrictFaceField(), pairPatchAgglomeration::restrictField(), GAMGAgglomeration::restrictField(), face::reverseFace(), thermalBaffleFvPatchScalarField::rmap(), noiseFFT::RMSmeanPf(), face::sameVertices(), multiNormal::sample(), waveSuperposition::scale(), globalIndex::scatter(), Pstream::scatterList(), mapDistributeBase::schedule(), searchableExtrudedCircle::searchableExtrudedCircle(), searchableSurfaces::searchableSurfaces(), timeSelector::select(), scalarRanges::selected(), timeSelector::selected(), surfaceFeatures::selectFeatureEdges(), Foam::selectManifoldEdges(), mapDistributeBase::send(), InteractionLists< typename CloudType::parcelType >::sendReferredData(), Foam::setBlockFaceCorrespondence(), fvMeshSubset::setCellSubset(), Time::setControls(), repatchPolyTopoChanger::setFaceZone(), repatchMesh::setFeatureEdges(), surfaceFeatures::setFromStatus(), pointPatchField< vector >::setInInternalField(), hexRef8::setInstance(), fvMeshSubset::setLargeCellSubset(), refinementSurfaces::setMinLevelFields(), cellVolumeWeightMethod::setNextCells(), faceAreaWeightAMI::setNextFaces(), mapNearestMethod::setNextNearestCells(), patchInjectionBase::setPositionAndCell(), duplicatePoints::setRefinement(), removeCells::setRefinement(), refinementIterator::setRefinement(), perfectInterface::setRefinement(), faceCollapser::setRefinement(), removePoints::setRefinement(), boundaryCutter::setRefinement(), tetDecomposer::setRefinement(), createShellMesh::setRefinement(), combineFaces::setRefinement(), meshCutAndRemove::setRefinement(), meshCutter::setRefinement(), edgeCollapser::setRefinement(), addPatchCellLayer::setRefinement(), hexRef8::setRefinement(), sampledSet::setSamples(), CompactListList< T, Container >::setSize(), masterUncollatedFileOperation::setTime(), removePoints::setUnrefinement(), combineFaces::setUnrefinement(), hexRef8::setUnrefinement(), UnsortedMeshedSurface< Face >::setZones(), globalMeshData::sharedPoints(), liquidMixtureProperties::sigma(), searchableSurfacesQueries::signedDistance(), singleLayerRegion::singleLayerRegion(), triSurfaceGeoMesh::size(), triSurfacePointGeoMesh::size(), dynamicTreeDataPoint::size(), pointFieldDecomposer::patchFieldDecomposer::size(), procLduMatrix::size(), singleCellFvMesh::agglomPatchFieldMapper::size(), solidMixtureProperties::size(), liquidMixtureProperties::size(), treeDataPoint::size(), facePointPatch::size(), treeDataEdge::size(), treeDataCell::size(), treeDataFace::size(), GAMGInterface::size(), meshToMesh0::patchFieldInterpolator::size(), MPLICcellStorage::size(), argList::size(), CompactListList< T, Container >::sizes(), symGaussSeidelSmoother::smooth(), GaussSeidelSmoother::smooth(), nonBlockingGaussSeidelSmoother::smooth(), snappyRefineDriver::snappyRefineDriver(), basicSymmetryFvPatchField< Type >::snGradTransformDiag(), partialSlipFvPatchField< Type >::snGradTransformDiag(), fixedNormalSlipFvPatchField< Type >::snGradTransformDiag(), solidBodyMotionSolver::solidBodyMotionSolver(), solidMixtureProperties::solidMixtureProperties(), PBiCG::solve(), PCG::solve(), smoothSolver::solve(), PBiCGStab::solve(), rigidBodyMeshMotionSolver::solve(), rigidBodyMeshMotion::solve(), GAMGSolver::solve(), TDACChemistryModel< ThermoType >::solve(), ParSortableList< Type >::sort(), PatchTools::sortedEdgeFaces(), Foam::sortedOrder(), PatchTools::sortedPointEdges(), UnsortedMeshedSurface< Face >::sortedZones(), MeshedSurface< Foam::face >::sortFacesAndStore(), extendedEdgeMesh::sortPointsAndEdges(), fileOperation::sortTimes(), meshRefinement::splitFaces(), meshRefinement::splitMesh(), meshRefinement::splitMeshRegions(), Foam::stepBackwardsToNextPoint(), Foam::stepForwardsToNextPoint(), MeshedSurface< Foam::face >::stitchFaces(), hexRef8::storeData(), streamlinesParticle::streamlinesParticle(), subCycleFields< GeometricField >::subCycleFields(), cellZoneSet::subset(), pointZoneSet::subset(), faceZoneSet::subset(), refinementHistory::subset(), hexRef8::subset(), PatchTools::subsetMap(), UnsortedMeshedSurface< Face >::subsetMesh(), MeshedSurface< Foam::face >::subsetMesh(), triSurface::subsetMesh(), triSurface::subsetMeshMap(), Foam::ListListOps::subSizes(), surfaceFeatures::surfaceFeatures(), surfaceIntersection::surfaceIntersection(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::surfaceType(), LduMatrix< Type, DType, LUType >::symmetric(), lduMatrix::symmetric(), faceZoneSet::sync(), globalMeshData::syncData(), syncTools::syncEdgeList(), syncTools::syncEdgeMap(), globalMeshData::syncPointData(), syncTools::syncPointList(), syncTools::syncPointMap(), meshRefinement::testSyncPointList(), TGaussSeidelSmoother< Type, DType, LUType >::TGaussSeidelSmoother(), thermoSingleLayer::thermoSingleLayer(), targetCoeffTrim::thetag(), pointToPointPlanarInterpolation::timeNames(), ListHashTable< T, Key, Hash >::toc(), CV2D::toPoint2D(), totalFlowRateAdvectiveDiffusiveFvPatchScalarField::totalFlowRateAdvectiveDiffusiveFvPatchScalarField(), MeshedSurface< Foam::face >::transcribe(), DynamicList< Foam::triFace >::transfer(), MeshedSurface< Foam::face >::transfer(), Foam::transform(), fft::transform(), cylindrical::transform(), porosityModel::transformModelData(), globalIndexAndTransform::transformPatches(), Foam::transformPoints(), rigidBodyMotion::transformPoints(), cylindrical::transformTensor(), EulerCoordinateRotation::transformVector(), STARCDCoordinateRotation::transformVector(), axesRotation::transformVector(), cylindrical::transformVector(), triSurfaceSearch::tree(), MeshedSurface< Foam::face >::triangulate(), triSurfaceTools::triangulateFaceCentre(), surfaceFeatures::trimFeatures(), triSurface::triSurfInstance(), thermoSingleLayer::Tw(), waveAtmBoundaryLayerSuperposition::UGas(), waveSuperposition::UGas(), waveSuperposition::ULiquid(), masterUncollatedFileOperation::uniformFile(), Foam::uniqueOrder(), Foam::unitSet(), Foam::vtkWritePolyData::unpackFieldTypeValues(), sampledSurfaces::update(), dynamicRefineFvMesh::update(), AMIInterpolation::update(), directionInfo::updateCell(), waveInletOutletFvPatchField< Type >::updateCoeffs(), turbulentTemperatureRadCoupledMixedFvPatchScalarField::updateCoeffs(), waveDisplacementPointPatchVectorField::updateCoeffs(), externalWallHeatFluxTemperatureFvPatchScalarField::updateCoeffs(), patchEdgeFaceRegions::updateFace(), processorGAMGInterfaceField::updateInterfaceMatrix(), meshRefinement::updateList(), LduMatrix< Type, DType, LUType >::updateMatrixInterfaces(), lduMatrix::updateMatrixInterfaces(), points0MotionSolver::updateMesh(), patchInjectionBase::updateMesh(), processorPolyPatch::updateMesh(), componentDisplacementMotionSolver::updateMesh(), CellZoneInjection< CloudType >::updateMesh(), removePoints::updateMesh(), cellZoneSet::updateMesh(), boundaryCutter::updateMesh(), pointZoneSet::updateMesh(), faceZoneSet::updateMesh(), refinementHistory::updateMesh(), addPatchCellLayer::updateMesh(), hexRef8::updateMesh(), polyMesh::updateMesh(), meshRefinement::updateMesh(), cellZoneSet::updateSet(), pointZoneSet::updateSet(), fileMonitor::updateStates(), PackedBoolList::used(), USERD_get_gold_variable_info(), USERD_set_filenames(), kinematicSingleLayer::Uw(), patchEdgeFaceRegions::valid(), ZeroConstant< Type >::value(), OneConstant< Type >::value(), Constant< Type >::value(), FieldFunction2< Type, ZeroConstant< Type > >::value(), FieldFunction1< Type, Sine< Type > >::value(), linearInterpolationWeights::valueWeights(), splineInterpolationWeights::valueWeights(), waveSuperposition::velocity(), vtkUnstructuredReader::vtkUnstructuredReader(), wallLayerCells::wallLayerCells(), WallLocalSpringSliderDashpot< CloudType >::WallLocalSpringSliderDashpot(), meshReader::warnDuplicates(), meshRefinement::weightedSum(), graph::wordify(), vtkSetWriter< Type >::write(), ensightSetWriter< Type >::write(), X3DsurfaceFormat< Face >::write(), WRLsurfaceFormat< Face >::write(), SMESHsurfaceFormat< Face >::write(), gnuplotSetWriter< Type >::write(), rawSetWriter< Type >::write(), xmgraceSetWriter< Type >::write(), thirdBodyEfficiencies::write(), GTSsurfaceFormat< Face >::write(), OBJsurfaceFormat< Face >::write(), foamSurfaceWriter::write(), AC3DsurfaceFormat< Face >::write(), VTKsurfaceFormat< Face >::write(), csvSetWriter< Type >::write(), OFFsurfaceFormat< Face >::write(), OBJedgeFormat::write(), ensightBinaryStream::write(), TRIsurfaceFormat< Face >::write(), STARCDsurfaceFormat< Face >::write(), OFSsurfaceFormat< Face >::write(), rawSurfaceWriter::write(), STARCDedgeFormat::write(), patchIdentifier::write(), primitiveEntry::write(), OBJstream::write(), blockFace::write(), setWriter< Foam::SphericalTensor >::write(), nastranSurfaceWriter::write(), OFstreamCollator::write(), ParticleCollector< CloudType >::write(), forceCoeffs::write(), regionSizeDistribution::write(), streamlines::write(), surfaceFieldValue::write(), STLsurfaceFormat< Face >::writeAscii(), STLsurfaceFormat< Face >::writeBinary(), forces::writeBins(), decomposedBlockData::writeBlocks(), STARCDsurfaceFormatCore::writeCase(), STARCDedgeFormat::writeCase(), ensightPartFaces::writeConnectivity(), Foam::writeEntry(), ensightPart::writeFieldList(), ReactingParcel< ParcelType >::writeFields(), fieldValueDelta::writeFileHeader(), WRLsurfaceFormatCore::writeHeader(), VTKedgeFormat::writeHeader(), VTKsurfaceFormatCore::writeHeader(), rawSurfaceWriter::writeHeader(), AMIMethod::writeIntersectionOBJ(), Foam::meshTools::writeOBJ(), coupledPolyPatch::writeOBJ(), triSurfaceTools::writeOBJ(), surfaceFeatures::writeObj(), extendedEdgeMesh::writeObj(), ensightPart::writeScalarField(), searchableSurfaces::writeStats(), edgeMesh::writeStats(), extendedEdgeMesh::writeStats(), extendedCellToFaceStencil::writeStencilStats(), ensightPart::writeVectorField(), liquidMixtureProperties::X(), CompositionModel< Foam::ThermoCloud< CloudType > >::X(), liquidMixtureProperties::Xs(), Foam::XstepForwardsToNextPoint(), phaseProperties::Y(), liquidMixtureProperties::Y(), meshRefinement::zonify(), ensightPartCells::~ensightPartCells(), ensightPartFaces::~ensightPartFaces(), ISAT< ThermoType >::~ISAT(), LeastSquaresVectors< Stencil >::~LeastSquaresVectors(), masterOFstream::~masterOFstream(), medialAxisMeshMover::~medialAxisMeshMover(), RaviPetersen::~RaviPetersen(), skewCorrectionVectors::~skewCorrectionVectors(), thermalBaffle::~thermalBaffle(), TRIsurfaceFormatCore::~TRIsurfaceFormatCore(), UIPstream::~UIPstream(), and UOPstream::~UOPstream().
|
inlinestatic |
|
inline |
|
inline |
Return the number of elements in the UList.
Definition at line 171 of file ListI.H.
Referenced by labelRanges::add(), DynamicField< T, SizeInc, SizeMult, SizeDiv >::append(), face::average(), PackedList< 2 >::capacity(), face::collapse(), face::flip(), face::inertia(), face::nEdges(), cellShape::nPoints(), ITstream::nRemainingTokens(), face::nTriangles(), labelRanges::const_iterator::operator++(), cellShape::points(), face::points(), ITstream::print(), ITstream::read(), referredWallFace::referredWallFace(), DynamicField< T, SizeInc, SizeMult, SizeDiv >::remove(), PackedList< 2 >::reserve(), face::reverseFace(), SortableList< T >::reverseSort(), ITstream::rewind(), globalMeshData::sharedPointGlobalLabels(), PackedList< 2 >::shrink(), SortableList< T >::sort(), face::sweptVol(), and primitiveEntry::write().
|
inline |
Alias for setSize(const label)
Definition at line 138 of file ListI.H.
Referenced by polyMeshFilter::filter(), polyMeshFilter::filterEdges(), linearInterpolationWeights::integrationWeights(), NamedEnum< compressibleField, 8 >::names(), minEqOpFace::operator()(), coupledPolyPatch::order(), faceAreaIntersect::triangulate(), and linearInterpolationWeights::valueWeights().
Alias for setSize(const label, const T&)
void setSize | ( | const label | newSize | ) |
Reset size of List.
Definition at line 281 of file List.C.
Referenced by preserveBafflesConstraint::add(), preserveFaceZonesConstraint::add(), preservePatchesConstraint::add(), singleProcessorFaceSetsConstraint::add(), fvMeshAdder::add(), polyMeshAdder::add(), refinementHistory::add(), cellTable::addCellZones(), addPatchCellLayer::addedCells(), lduPrimitiveMesh::addInterfaces(), edgeSurface::addIntersectionEdges(), regIOobject::addWatch(), MeshedSurface< Foam::face >::addZones(), GAMGAgglomeration::agglomerateLduAddressing(), extendedEdgeMesh::allNearestFeatureEdges(), face::areaInContact(), FreeStream< CloudType >::autoMap(), meshRefinement::balance(), bladeModel::bladeModel(), booleanSurface::booleanSurface(), searchableExtrudedCircle::boundingSpheres(), searchableBox::boundingSpheres(), searchablePlane::boundingSpheres(), searchableSphere::boundingSpheres(), searchableDisk::boundingSpheres(), searchablePlate::boundingSpheres(), searchableCylinder::boundingSpheres(), searchableSurfaceCollection::boundingSpheres(), triSurfaceMesh::boundingSpheres(), nearWallFields::calcAddressing(), decompositionMethod::calcCellCells(), primitiveMesh::calcCells(), cellToFaceStencil::calcFaceStencil(), CentredFitSnGradData< Polynomial >::calcFit(), FitData< CentredFitSnGradData< Polynomial >, extendedCentredCellToFaceStencil, Polynomial >::calcFit(), polyLine::calcParam(), primitiveMesh::calcPointOrder(), createShellMesh::calcPointRegions(), addPatchCellLayer::calcSidePatch(), meshRefinement::calculateEdgeWeights(), GAMGAgglomeration::calculateRegionMaster(), pointMVCWeight::calcWeights(), primitiveMeshTools::cellClosedness(), cellMatcher::cellMatcher(), fvMotionSolver::cellMotionBoundaryTypes(), MeshedSurface< Foam::face >::checkFaces(), edgeCollapser::checkMeshQuality(), GAMGAgglomeration::checkRestriction(), ensightPartFaces::classify(), polyMesh::clearPrimitives(), refinementHistory::clone(), face::collapse(), cellShape::collapsedFaces(), extendedFaceToCellStencil::collectData(), extendedCellToFaceStencil::collectData(), mappedPatchBase::collectSamples(), mapDistributeBase::compact(), fvPatch::constraintTypes(), polyPatch::constraintTypes(), ListCompactIO< face, label >::convertFromCompact(), ListCompactIO< face, label >::convertToCompact(), removePoints::countPointUsage(), cyclicPolyPatch::coupledPoints(), epsilonWallFunctionFvPatchScalarField::createAveragingWeights(), omegaWallFunctionFvPatchScalarField::createAveragingWeights(), meshRefinement::createZoneBaffles(), STARCD::cullPoints(), motionSmootherAlgo::curPoints(), hexCellLooper::cut(), geomCellLooper::cut(), Foam::cwd(), DAC< ThermoType >::DAC(), simpleGeomDecomp::decompose(), LUscalarMatrix::decompose(), mapPatchChange::deletedPatches(), refinementHistory::distribute(), mapDistributeBase::distribute(), distributedTriSurfaceMesh::distribute(), snappySnapDriver::doSnap(), Foam::duplicateOrder(), cell::edges(), ListHashTable< T, Key, Hash >::erase(), Pstream::exchange(), mapDistributeBase::exchangeAddressing(), Pstream::exchangeSizes(), extendedEdgeMesh::extendedEdgeMesh(), extendedFeatureEdgeMesh::extendedFeatureEdgeMesh(), extendedUpwindCellToFaceStencil::extendedUpwindCellToFaceStencil(), externalWallHeatFluxTemperatureFvPatchScalarField::externalWallHeatFluxTemperatureFvPatchScalarField(), extrudePatchMesh::extrudePatchMesh(), primitiveMesh::faceEdges(), primitiveMeshTools::facePyramidVolume(), cellModel::faces(), boundBox::faces(), searchablePlateFeatures::features(), refinementSurfaces::findAllHigherIntersections(), searchableSurfacesQueries::findAllIntersections(), searchableSurfacesQueries::findAnyIntersection(), refinementSurfaces::findHigherIntersection(), MeshZones< cellZone, polyMesh >::findIndices(), refinementSurfaces::findInside(), triSurfaceSearch::findLine(), searchablePlane::findLine(), searchableSphere::findLine(), searchablePlate::findLine(), searchableDisk::findLine(), searchableCylinder::findLine(), searchableSurfaceWithGaps::findLine(), searchableSurfaceCollection::findLine(), searchableBox::findLine(), triSurfaceSearch::findLineAll(), searchablePlane::findLineAll(), searchableSphere::findLineAll(), searchablePlate::findLineAll(), searchableDisk::findLineAll(), searchableCylinder::findLineAll(), searchableSurfaceWithGaps::findLineAll(), searchableSurfaceCollection::findLineAll(), searchableBox::findLineAll(), distributedTriSurfaceMesh::findLineAll(), triSurfaceSearch::findLineAny(), searchableSphere::findLineAny(), searchableCylinder::findLineAny(), searchableBox::findLineAny(), triSurfaceRegionSearch::findNearest(), searchableSurfacesQueries::findNearest(), searchableExtrudedCircle::findNearest(), triSurfaceSearch::findNearest(), searchablePlane::findNearest(), searchableSphere::findNearest(), searchablePlate::findNearest(), searchableDisk::findNearest(), searchableCylinder::findNearest(), searchableBox::findNearest(), distributedTriSurfaceMesh::findNearest(), refinementFeatures::findNearestEdge(), searchableSurfacesQueries::findNearestIntersection(), refinementSurfaces::findNearestIntersection(), refinementFeatures::findNearestPoint(), refinementSurfaces::findNearestRegion(), refinementFeatures::findNearestRegionEdge(), searchableExtrudedCircle::findParametricNearest(), mappedPatchBase::findSamples(), FreeStream< CloudType >::FreeStream(), globalIndex::gather(), decomposedBlockData::gather(), PatchTools::gatherAndMerge(), GAMGAgglomeration::gatherList(), decomposedBlockData::gatherSlaveData(), searchableSurfaceCollection::getField(), triSurfaceMesh::getField(), distributedTriSurfaceMesh::getField(), combineFaces::getMergeSets(), searchablePlane::getNormal(), searchableExtrudedCircle::getNormal(), searchableSphere::getNormal(), searchablePlate::getNormal(), searchableDisk::getNormal(), searchableCylinder::getNormal(), searchableSurfaceCollection::getNormal(), searchableBox::getNormal(), triSurfaceMesh::getNormal(), distributedTriSurfaceMesh::getNormal(), searchablePlane::getRegion(), searchableExtrudedCircle::getRegion(), searchableSphere::getRegion(), searchablePlate::getRegion(), searchableDisk::getRegion(), searchableCylinder::getRegion(), searchableSurfaceCollection::getRegion(), searchableBox::getRegion(), triSurfaceMesh::getRegion(), distributedTriSurfaceMesh::getRegion(), removePoints::getUnrefimentSet(), cellLooper::getVertEdgesNonFace(), triSurfaceTools::getVertexTriangles(), cellLooper::getVertFacesNonEdge(), searchableSphere::getVolumeType(), searchableCylinder::getVolumeType(), searchableBox::getVolumeType(), triSurfaceMesh::getVolumeType(), addPatchCellLayer::globalEdgeFaces(), triSurfaceTools::greenRefine(), hashedWordList::hashedWordList(), Distribution< Type >::index(), sortLabelledTri::indices(), meshToMeshMethod::initialise(), AMIMethod::initialise(), GAMGInterface::interfaceInternalField(), AMIInterpolation::interpolateToSource(), AMIInterpolation::interpolateToTarget(), intersectedSurface::intersectedSurface(), cellZoneSet::invert(), pointZoneSet::invert(), faceZoneSet::invert(), Foam::invertManyToMany(), Foam::invertOneToMany(), dictionary::keys(), cell::labels(), noiseFFT::Ldelta(), lduPrimitiveMesh::lduPrimitiveMesh(), liquidMixtureProperties::liquidMixtureProperties(), List< Field< scalar > >::List(), lookupProfile::lookupProfile(), LUscalarMatrix::LUscalarMatrix(), mapDistribute::mapDistribute(), mapDistributeBase::mapDistributeBase(), fvMesh::mapFields(), repatchMesh::markFaces(), PatchTools::markZones(), triSurface::markZones(), PatchTools::matchEdges(), Foam::matchPoints(), PatchTools::matchPoints(), prismMatcher::matchShape(), hexMatcher::matchShape(), pyrMatcher::matchShape(), tetWedgeMatcher::matchShape(), wedgeMatcher::matchShape(), tetMatcher::matchShape(), cellToCellStencil::merge(), cellToFaceStencil::merge(), edgeIntersections::merge(), meshRefinement::mergeBaffles(), edgeMesh::mergeEdges(), Foam::mergePoints(), edgeMesh::mergePoints(), globalMeshData::mergePoints(), fileOperation::mergeTimes(), meshTriangulation::meshTriangulation(), molecule::molecule(), rigidBodyModel::movingBodyNames(), engineValve::movingPatchIDs(), NamedEnum< compressibleField, 8 >::names(), IOobjectList::names(), objectRegistry::names(), polyBoundaryMesh::nbrEdges(), extendedEdgeMesh::nearestFeatureEdge(), extendedEdgeMesh::nearestFeatureEdgeByType(), surfaceFeatures::nearestSurfEdge(), cellCuts::nonAnchorPoints(), Distribution< Type >::normalised(), ListPlusEqOp< T, Size >::operator()(), minEqOpFace::operator()(), minEqOp< labelPair >::operator()(), procLess::operator()(), listPlusEqOp< T >::operator()(), inverseFaceDistanceDiffusivity::operator()(), inversePointDistanceDiffusivity::operator()(), ListAppendEqOp< T >::operator()(), Foam::operator<<(), CompactIOField< Type, BaseType >::operator=(), Foam::operator>>(), regionCoupledBase::order(), cyclicAMIPolyPatch::order(), indexedOctree< Foam::treeDataFace >::overlaps(), argList::parse(), ParticleCollector< CloudType >::ParticleCollector(), AMIInterpolation::patchMagSf(), noiseFFT::Pdelta(), SprayCloud< Foam::DSMCCloud >::penetration(), phaseProperties::phaseProperties(), phasePropertiesList::phasePropertiesList(), pointFieldReconstructor::pointFieldReconstructor(), PatchTools::pointNormals(), Foam::polyMeshZipUpCells(), powerLawLopesdaCostaZone::powerLawLopesdaCostaZone(), snappySnapDriver::preSmoothPatch(), fvMeshDistribute::printCoupleInfo(), Foam::printTable(), Distribution< Type >::raw(), Foam::blockMeshTools::read(), NASedgeFormat::read(), GTSsurfaceFormat< Face >::read(), STARCDedgeFormat::read(), primitiveEntry::read(), writeObjectsBase::read(), regIOobject::read(), repatchMesh::read(), functionObjectList::read(), STARCD::readBoundary(), STARCD::readCells(), masterUncollatedFileOperation::readHeader(), mappedPatchBase::readListOrField(), STARCD::readPoints(), repatchMesh::readTriSurface(), mapDistributeBase::receive(), ensightPart::reconstruct(), EFA< ThermoType >::reduceMechanism(), PFA< ThermoType >::reduceMechanism(), DAC< ThermoType >::reduceMechanism(), DRGEP< ThermoType >::reduceMechanism(), meshRefinement::refineCandidates(), refinementHistory::refinementHistory(), searchableExtrudedCircle::regions(), searchablePlane::regions(), searchableBox::regions(), searchableSphere::regions(), searchableDisk::regions(), searchablePlate::regions(), searchableCylinder::regions(), searchableSurfaceCollection::regions(), triSurfaceMesh::regions(), edgeMesh::regions(), snappySnapDriver::repatchToSurface(), PackedList< 2 >::reserve(), refinementHistory::resize(), mapDistributeBase::schedule(), searchableSurfaces::searchableSurfaces(), PackedList< 2 >::setCapacity(), fvMeshSubset::setCellSubset(), decompositionMethod::setConstraints(), repatchMesh::setFeatureEdges(), polyBoundaryMesh::setGroup(), fvMeshSubset::setLargeCellSubset(), UnsortedMeshedSurface< Face >::setOneZone(), duplicatePoints::setRefinement(), refinementIterator::setRefinement(), removePoints::setRefinement(), boundaryCutter::setRefinement(), tetDecomposer::setRefinement(), addPatchCellLayer::setRefinement(), hexRef8::setRefinement(), molecule::setSiteSizes(), cellSets::setSize(), SortableListDRGEP< Type >::setSize(), SortableListEFA< Type >::setSize(), CompactListList< T, Container >::setSize(), UnsortedMeshedSurface< Face >::setSize(), bufferedAccumulator< scalar >::setSizes(), removePoints::setUnrefinement(), UnsortedMeshedSurface< Face >::setZones(), PackedList< 2 >::shrink(), searchableSurfacesQueries::signedDistance(), snappyRefineDriver::snappyRefineDriver(), GAMGSolver::solve(), ParSortableList< Type >::sort(), Foam::sortedOrder(), UnsortedMeshedSurface< Face >::sortedZones(), extendedEdgeMesh::sortPointsAndEdges(), fileOperation::sortTimes(), meshRefinement::splitFaces(), MeshedSurface< Foam::face >::stitchFaces(), NamedEnum< compressibleField, 8 >::strings(), PatchTools::subsetMap(), triSurface::subsetMeshMap(), surfacePatchIOList::surfacePatchIOList(), surfZoneIOList::surfZoneIOList(), syncTools::swapBoundaryCellList(), syncTools::swapBoundaryCellPositions(), ListHashTable< T, Key, Hash >::toc(), externalCoupledTemperatureMixedFvPatchScalarField::transferData(), externalCoupledMixedFvPatchField< scalar >::transferData(), MeshedSurface< Foam::face >::triangulate(), triSurfaceTools::triangulate(), triSurfaceTools::triangulateFaceCentre(), Foam::uniqueOrder(), turbulentTemperatureRadCoupledMixedFvPatchScalarField::updateCoeffs(), patchEdgeFaceRegions::updateEdge(), patchEdgeFaceRegions::updateFace(), edgeVertex::updateLabels(), removePoints::updateMesh(), cellZoneSet::updateMesh(), boundaryCutter::updateMesh(), faceZoneSet::updateMesh(), faceZone::updateMesh(), addPatchCellLayer::updateMesh(), polyMesh::updateMesh(), PackedBoolList::used(), cellToCellStencil::validBoundaryFaces(), cellToFaceStencil::validBoundaryFaces(), splineInterpolationWeights::valueWeights(), vtkUnstructuredReader::vtkUnstructuredReader(), waveSuperposition::waveSuperposition(), NamedEnum< compressibleField, 8 >::words(), forceCoeffs::write(), streamlines::write(), and decomposedBlockData::writeBlocks().
|
inline |
Clear the list, i.e. set size to zero.
Definition at line 125 of file ListI.H.
Referenced by regIOobject::addWatch(), MomentumCloud< Foam::DSMCCloud >::buildCellOccupancy(), cellVolumeWeightMethod::calculateAddressing(), edgeCollapser::checkMeshQuality(), regIOobject::checkOut(), TRIsurfaceFormatCore::clear(), hashedWordList::clear(), SortableList< T >::clear(), STLsurfaceFormatCore::clear(), MeshedSurfaceIOAllocator::clear(), CompactListList< T, Container >::clear(), edgeMesh::clear(), UnsortedMeshedSurface< Face >::clear(), extendedEdgeMesh::clear(), PackedList< 2 >::clearStorage(), Foam::cmptAv(), Foam::cmptMag(), Foam::cmptMax(), Foam::cmptMin(), Poisson::correct(), removePoints::countPointUsage(), DimensionedField< Type, Foam::pointMesh >::DimensionedField(), Foam::duplicateOrder(), phaseScalarTransport::execute(), refinementSurfaces::findAllHigherIntersections(), searchablePlane::findLineAll(), searchableSphere::findLineAll(), searchablePlate::findLineAll(), searchableDisk::findLineAll(), searchableCylinder::findLineAll(), searchableSurfaceWithGaps::findLineAll(), searchableSurfaceCollection::findLineAll(), searchableBox::findLineAll(), distributedTriSurfaceMesh::findLineAll(), meshRefinement::isNormalGap(), Foam::mag(), Foam::magSqr(), Cloud< passiveParticle >::move(), minEqOpFace::operator()(), minEqOp< labelPair >::operator()(), SortableList< T >::operator=(), coupledPolyPatch::order(), patchProbes::patchProbes(), Foam::pow(), TRIsurfaceFormat< Face >::read(), STARCDsurfaceFormat< Face >::read(), STARCDedgeFormat::read(), STLsurfaceFormat< Face >::read(), nearWallFields::read(), regIOobject::read(), STARCD::readBoundary(), STARCD::readCells(), polyMesh::readUpdate(), ensightPart::reconstruct(), cuttingPlane::reCut(), surfMesh::removeZones(), logFiles::resetName(), logFiles::resetNames(), decompositionMethod::setConstraints(), searchableSurface::setField(), SortableList< T >::shrink(), Foam::sortedOrder(), MeshedSurface< Foam::face >::sortFacesAndStore(), Foam::sqr(), UnsortedMeshedSurface< Face >::subsetMesh(), surfaceFeatures::surfaceFeatures(), MeshedSurface< Foam::face >::transfer(), MeshedSurface< Foam::face >::triangulate(), vtkUnstructuredReader::vtkUnstructuredReader(), and meshReader::writeMesh().
|
inline |
Append an element at the end of the list.
Definition at line 178 of file ListI.H.
Referenced by singleProcessorFaceSetsConstraint::add(), cellTable::addCellZones(), clouds::addSupFields(), surfaceFilm::addSupFields(), regIOobject::addWatch(), hashedWordList::append(), MomentumCloud< Foam::DSMCCloud >::buildCellOccupancy(), createShellMesh::calcPointRegions(), cellVolumeWeightMethod::calculateAddressing(), directMethod::calculateAddressing(), GAMGAgglomeration::checkRestriction(), commSchedule::commSchedule(), hexRef8::consistentSlowRefinement(), hexRef8::consistentSlowRefinement2(), curvatureSeparation::curvatureSeparation(), decompositionMethod::decompositionMethod(), cellZoneSet::deleteSet(), pointZoneSet::deleteSet(), Foam::dictArgList(), snappyLayerDriver::doLayers(), edgeSurface::edgeSurface(), functionObjectList::findDict(), Foam::findEtcDirs(), Foam::findEtcFiles(), removeCells::getExposedFaces(), triSurfaceTools::greenRefine(), meshToMesh::mapAndOpTgtToSrc(), PatchTools::markZone(), triSurface::markZone(), meshToMeshMethod::maskCells(), meshRefinement::mergeBaffles(), meshRefinement::meshedPatches(), findCellParticle::move(), Cloud< passiveParticle >::move(), NamedEnum< compressibleField, 8 >::names(), chemistryTabulationMethod< ThermoType >::New(), basicChemistryModel::New(), chemistryReductionMethod< ThermoType >::New(), minEqOpFace::operator()(), listPlusEqOp< T >::operator()(), indexedOctree< Foam::treeDataFace >::overlaps(), AMIInterpolation::patchMagSf(), VTKsurfaceFormat< Face >::read(), singleRegionCorrectorConvergenceControl::readCorrResidualControls(), edgeMesh::regions(), logFiles::resetName(), logFiles::resetNames(), timeSelector::select0(), Foam::selectRegionNames(), PatchEdgeFaceWave< PrimitivePatchType, Type, TrackingData >::setEdgeInfo(), FaceCellWave< Type, TrackingData >::setFaceInfo(), polyBoundaryMesh::setGroup(), hexRef8::setInstance(), edgeCollapser::setRefinement(), hexRef8::setRefinement(), masterUncollatedFileOperation::setTime(), Foam::fvc::smooth(), meshRefinement::splitMeshRegions(), Foam::fvc::spread(), Foam::fvc::sweep(), faceZoneSet::sync(), externalDisplacementMeshMover::updateMesh(), and codedBase::writeCode().
|
inline |
Append a UIndirectList at the end of this list.
Transfer the contents of the argument List into this list.
and annul the argument list
Definition at line 342 of file List.C.
Referenced by extendedEdgeMesh::add(), cellZoneSet::addSet(), pointZoneSet::addSet(), faceZoneSet::addSet(), extendedEdgeMesh::allNearestFeatureEdges(), extendedEdgeMesh::allNearestFeaturePoints(), faceZoneToFaceZone::applyToSet(), setToPointZone::applyToSet(), setToCellZone::applyToSet(), setToFaceZone::applyToSet(), setAndNormalToFaceZone::applyToSet(), setsToFaceZone::applyToSet(), createShellMesh::calcPointRegions(), partialFaceAreaWeightAMI::calculate(), directAMI::calculate(), mapNearestAMI::calculate(), faceAreaWeightAMI::calculate(), cellVolumeWeightMethod::calculateAddressing(), mapNearestMethod::calculateAddressing(), directMethod::calculateAddressing(), mapDistributeBase::compact(), polyMeshFilter::copyMesh(), meshWave::correct(), geomCellLooper::cut(), topoCellLooper::cut(), cyclicAMIGAMGInterface::cyclicAMIGAMGInterface(), cellZoneSet::deleteSet(), pointZoneSet::deleteSet(), faceZoneSet::deleteSet(), fvMeshDistribute::distribute(), mapDistributeBase::distribute(), extendedUpwindCellToFaceStencil::extendedUpwindCellToFaceStencil(), hexRef8::faceLevel(), triSurfaceSearch::findLineAll(), searchableBox::findLineAll(), extendedEdgeMesh::flipNormals(), globalIndex::gather(), PatchTools::gatherAndMerge(), genericFvPatchField< Type >::genericFvPatchField(), genericPointPatchField< Type >::genericPointPatchField(), List< Field< scalar > >::List(), PatchTools::markZone(), triSurface::markZone(), polyBoundaryMesh::matchGroups(), cellToCellStencil::merge(), cellToFaceStencil::merge(), edgeMesh::mergePoints(), fileOperation::mergeTimes(), MeshedSurface< Foam::face >::MeshedSurface(), streamlinesParticle::move(), NamedEnum< compressibleField, 8 >::names(), cellCuts::nonAnchorPoints(), minEqOp< labelPair >::operator()(), ifEqEqOp< value >::operator()(), indexedOctree< Foam::treeDataFace >::overlaps(), patchInteractionDataList::patchInteractionDataList(), OBJedgeFormat::read(), STARCDedgeFormat::read(), singleRegionCorrectorConvergenceControl::readCorrResidualControls(), STARCDCore::readPoints(), surfMesh::readUpdate(), polyMesh::readUpdate(), edgeMesh::regions(), UnsortedMeshedSurface< Face >::remapFaces(), cuttingPlane::remapFaces(), MeshedSurfaceIOAllocator::reset(), edgeMesh::reset(), UnsortedMeshedSurface< Face >::reset(), MeshedSurfaceIOAllocator::resetFaces(), SortableList< T >::reverseSort(), hexRef8::setInstance(), hexRef8::setRefinement(), UPtrList< Foam::diameterModels::velocityGroup >::shuffle(), snappyRefineDriver::snappyRefineDriver(), SortableListDRGEP< Type >::sort(), SortableListEFA< Type >::sort(), SortableList< T >::sort(), extendedEdgeMesh::sortPointsAndEdges(), meshRefinement::splitMesh(), SortableListEFA< Type >::stableSort(), SortableListDRGEP< Type >::stableSort(), MeshedSurface< Foam::face >::stitchFaces(), cellZoneSet::subset(), pointZoneSet::subset(), faceZoneSet::subset(), refinementHistory::subset(), hexRef8::subset(), surfaceIntersection::surfaceIntersection(), faceZoneSet::sync(), hashedWordList::transfer(), CompactListList< T, Container >::transfer(), edgeMesh::transfer(), mapDistributePolyMesh::transfer(), surfMesh::transfer(), mapDistributeBase::transfer(), UnsortedMeshedSurface< Face >::transfer(), PackedList< 2 >::transfer(), mapDistribute::transfer(), extendedEdgeMesh::transfer(), MeshedSurface< Foam::face >::triangulate(), dynamicRefineFvMesh::update(), mappedVelocityFluxFixedValueFvPatchField::updateCoeffs(), meshRefinement::updateList(), patchInjectionBase::updateMesh(), cellZoneSet::updateMesh(), pointZoneSet::updateMesh(), faceZoneSet::updateMesh(), refinementHistory::updateMesh(), hexRef8::updateMesh(), meshRefinement::updateMesh(), Foam::writeEntry(), and TRIsurfaceFormatCore::~TRIsurfaceFormatCore().
void transfer | ( | DynamicList< T, SizeInc, SizeMult, SizeDiv > & | a | ) |
void transfer | ( | SortableList< T > & | a | ) |
Assignment to UList operator. Takes linear time.
Definition at line 376 of file List.C.
Referenced by cellShape::collapse(), decomposedBlockData::decomposedBlockData(), SortableListEFA< Type >::operator=(), SortableListDRGEP< Type >::operator=(), hashedWordList::operator=(), SortableList< T >::operator=(), ITstream::operator=(), triSurface::operator=(), and PackedList< 2 >::reset().
void operator= | ( | const UIndirectList< T > & | lst | ) |
Assignment to UIndirectList operator. Takes linear time.
void operator= | ( | const BiIndirectList< T > & | lst | ) |
Assignment to BiIndirectList operator. Takes linear time.