List< T > Class Template Reference

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::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< Foam::Vector2D >, Field< LUType >, Field< PointType >, Field< symmTensor >, Field< T >, Field< tensor >, Field< TypeGrad >, BinSum< IndexType, List, CombineOp >, cellClassification, cellShape, cellToCellStencil, DynamicList< T, SizeInc, SizeMult, SizeDiv >, faceToCellStencil, faceTriangulation, IOList< T >, ITstream, ListCompactIO< T, BaseType >, ProcessorTopology< Container, ProcPatch >, pTraits< List< T > >, regionSplit, SortableList< T >, surfacePatchIOList, surfZoneIOList, and zone.

Collaboration diagram for List< T >:

Public Types

typedef SubList< TsubList
 Declare type of subList. More...
 
- Public Types inherited from UList< T >
typedef T value_type
 Type of values the UList contains. More...
 
typedef Treference
 Type that can be used for storing into. More...
 
typedef const Tconst_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 Titerator
 Random access iterator for traversing UList. More...
 
typedef const Tconst_iterator
 Random access iterator for traversing UList. More...
 
typedef Treverse_iterator
 Reverse iterator for reverse traversal of UList. More...
 
typedef const Tconst_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 initializing 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 initializer 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...
 
TnewElmt (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 initializer 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 Tcdata () const
 Return a const pointer to the first data element,. More...
 
Tdata ()
 Return a pointer to the first data element,. More...
 
Tfirst ()
 Return the first element of the list. More...
 
const Tfirst () const
 Return first element of the list. More...
 
Tlast ()
 Return the last element of the list. More...
 
const Tlast () 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...
 
Toperator[] (const label)
 Return element of UList. More...
 
const Toperator[] (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

Istreamoperator>> (Istream &, List< T > &)
 Read List from Istream, discarding contents of existing List. More...
 

Detailed Description

template<class T>
class Foam::List< T >

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.

Source files

Definition at line 59 of file HashTable.H.

Member Typedef Documentation

◆ subList

typedef SubList<T> subList

Declare type of subList.

Definition at line 199 of file List.H.

Constructor & Destructor Documentation

◆ List() [1/17]

List ( )
inline

Null constructor.

Definition at line 103 of file ListI.H.

◆ List() [2/17]

List ( const label  s)
explicit

Construct with given size.

Definition at line 39 of file List.C.

◆ List() [3/17]

List ( const label  s,
const T a 
)

Construct with given size and value for all elements.

Definition at line 55 of file List.C.

◆ List() [4/17]

List ( const label  s,
const zero   
)

Construct with given size initializing all elements to zero.

Definition at line 79 of file List.C.

◆ List() [5/17]

List ( const List< T > &  a)

Copy constructor.

Definition at line 103 of file List.C.

◆ List() [6/17]

List ( const List< T2 > &  a)
explicit

Copy constructor from list containing another type.

Definition at line 131 of file List.C.

◆ List() [7/17]

List ( List< T > &&  lst)

Move constructor.

Definition at line 149 of file List.C.

◆ List() [8/17]

List ( List< T > &  a,
bool  reuse 
)

Construct as copy or re-use as specified.

Definition at line 156 of file List.C.

◆ List() [9/17]

List ( const UList< T > &  a,
const labelUList< T > &  mapAddressing 
)

Construct as subset.

Definition at line 189 of file List.C.

◆ List() [10/17]

List ( InputIterator  first,
InputIterator  last 
)

Construct given start and end iterators.

Definition at line 209 of file List.C.

◆ List() [11/17]

List ( const FixedList< T, Size > &  lst)
explicit

Construct as copy of FixedList<T, Size>

Definition at line 217 of file List.C.

◆ List() [12/17]

List ( const PtrList< T > &  lst)
explicit

Construct as copy of PtrList<T>

Definition at line 226 of file List.C.

◆ List() [13/17]

List ( const SLList< T > &  lst)
explicit

Construct as copy of SLList<T>

Definition at line 235 of file List.C.

◆ List() [14/17]

List ( const UIndirectList< T > &  lst)
explicit

Construct as copy of UIndirectList<T>

Definition at line 242 of file List.C.

◆ List() [15/17]

List ( const BiIndirectList< T > &  lst)
explicit

Construct as copy of BiIndirectList<T>

Definition at line 251 of file List.C.

◆ List() [16/17]

List ( std::initializer_list< T lst)

Construct from an initializer list.

Definition at line 260 of file List.C.

◆ List() [17/17]

List ( Istream is)

Construct from Istream.

Definition at line 35 of file ListIO.C.

◆ ~List()

~List ( )

Destructor.

Definition at line 269 of file List.C.

Member Function Documentation

◆ size() [1/2]

void size ( const label  n)
inlineprotected

Override size to be inconsistent with allocated storage.

Use with care

Definition at line 163 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(), interRegionExplicitPorositySource::addSup(), polyTopoChanger::addTopologyModifiers(), unwatchedIOdictionary::addWatch(), fileMonitor::addWatch(), fileMonitorWatcher::addWatch(), regIOobject::addWatch(), MeshedSurface< Foam::face >::addZones(), polyMesh::addZones(), primitiveMeshGeometry::affectedCells(), polyMeshGeometry::affectedCells(), singleCellFvMesh::agglomerate(), GAMGInterface::agglomerateCoeffs(), GAMGAgglomeration::agglomerateLduAddressing(), extendedEdgeMesh::allNearestFeaturePoints(), UPstream::allocateCommunicator(), AMIInterpolation::AMIInterpolation(), blockEdge::appendEndPoints(), directMethod::appendToDirectSeeds(), searchableSurfaceToFaceZone::applyToSet(), setToCellZone::applyToSet(), faceZoneToFaceZone::applyToSet(), setToPointZone::applyToSet(), setToFaceZone::applyToSet(), setAndNormalToFaceZone::applyToSet(), setsToFaceZone::applyToSet(), face::areaInContact(), pressureInletOutletVelocityFvPatchVectorField::autoMap(), snappySnapDriver::avgCellCentres(), meshRefinement::baffleAndSplitMesh(), binaryTree< CompType, ThermoType >::balance(), meshRefinement::balance(), meshRefinement::balanceAndRefine(), Foam::bandCompression(), binaryTree< CompType, ThermoType >::binaryTreeSearch(), bladeModel::bladeModel(), blockDescriptor::blockDescriptor(), booleanSurface::booleanSurface(), GeometricField< Type, PatchField, GeoMesh >::Boundary::Boundary(), searchableExtrudedCircle::boundingSpheres(), searchableSurfaceCollection::boundingSpheres(), searchableSurfacesQueries::bounds(), tetherPotentialList::buildPotentials(), pairPotentialList::buildPotentials(), faceZone::calcCellLayers(), primitiveMesh::calcCells(), enrichedPatch::calcEnrichedFaces(), faceCoupleInfo::calcFacePointAverages(), add::calcFieldType(), subtract::calcFieldType(), 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(), fieldMinMax::calcMinMaxFields(), 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(), cyclicPolyPatch::calcTransforms(), coupledPolyPatch::calcTransformTensors(), directAMI::calculate(), mapNearestAMI::calculate(), mapNearestMethod::calculateAddressing(), meshRefinement::calculateEdgeWeights(), GAMGAgglomeration::calculateRegionMaster(), pointMVCWeight::calcWeights(), edgeMesh::canRead(), tetOverlapVolume::cellCellOverlapMinDecomp(), tetOverlapVolume::cellCellOverlapVolumeMinDecomp(), hexRef8::cellShapes(), polyMeshTetDecomposition::cellTetIndices(), dynamicRefineFvMesh::cellToPoint(), cellModel::centre(), repatchPolyTopoChanger::changeAnchorPoint(), boundaryMesh::changeFaces(), polyTopoChange::changeMesh(), repatchPolyTopoChanger::changePatchID(), layerAdditionRemoval::changeTopology(), TableBase< Type >::check(), faceZone::checkAddressing(), primitiveMesh::checkCellsZipUp(), primitiveMesh::checkClosedBoundary(), primitiveMesh::checkCommonOrder(), Foam::PstreamGlobals::checkCommunicator(), primitiveMesh::checkDuplicateFaces(), triSurface::checkEdges(), primitiveMeshGeometry::checkFaceDotProduct(), polyMeshGeometry::checkFaceFlatness(), primitiveMesh::checkFaceOrthogonality(), MeshedSurface< Foam::face >::checkFaces(), primitiveMeshGeometry::checkFaceTwist(), polyMeshGeometry::checkFaceTwist(), primitiveMesh::checkFaceVertices(), searchableSurfaces::checkIntersection(), hexRef8::checkMesh(), edgeCollapser::checkMeshQuality(), Foam::checkNonManifoldEdge(), searchableSurfaces::checkNormalOrientation(), PatchTools::checkOrientation(), ZoneMesh< 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(), polyMeshGeometry::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(), ListCompactIO< face, label >::convertFromCompact(), ListCompactIO< face, label >::convertToCompact(), polyMeshFilter::copyMesh(), Foam::MULES::correct(), patchInjection::correct(), limitTemperature::correct(), transferModel::correct(), EDC< ReactionThermo >::correct(), particle< Type >::correctAfterParallelTransfer(), cellDistFuncs::correctBoundaryPointCells(), ReactingParcel< ParcelType >::correctSurfaceValues(), removePoints::countPointUsage(), cyclicPolyPatch::coupledEdges(), globalMeshData::coupledPatchMeshEdgeMap(), cyclicPolyPatch::coupledPoints(), Foam::cp(), heThermo< BasicSolidThermo, MixtureType >::Cp(), heThermo< BasicSolidThermo, MixtureType >::CpByCpv(), heThermo< BasicSolidThermo, MixtureType >::Cpv(), meshRefinement::createBaffles(), Keyed< T >::createList(), createShellMesh::createShellMesh(), meshRefinement::createZoneBaffles(), csvTableReader< Type >::csvTableReader(), STARCD::cullPoints(), displacementInterpolationMotionSolver::curPoints(), curvatureSeparation::curvatureSeparation(), hexCellLooper::cut(), geomCellLooper::cut(), cuttingPlane::cut(), topoCellLooper::cut(), Foam::meshTools::cutDirToEdge(), heThermo< BasicSolidThermo, MixtureType >::Cv(), Foam::cwd(), cyclicAMIGAMGInterface::cyclicAMIGAMGInterface(), cyclicGAMGInterface::cyclicGAMGInterface(), 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(), dimensionSets::dimensionSets(), displacementInterpolationMotionSolver::displacementInterpolationMotionSolver(), 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(), dynamicRefineFvMesh::error(), 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(), tetMatcher::faceSizeMatch(), tetWedgeMatcher::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(), polyMeshAdder::findSharedPoints(), polyMeshTetDecomposition::findTet(), pointToPointPlanarInterpolation::findTime(), extendedEdgeMesh::flipNormals(), faceCorrectedSnGrad< Type >::fullGradCorrection(), GAMGSolver::GAMGSolver(), heThermo< BasicSolidThermo, MixtureType >::gamma(), globalIndex::gather(), lduPrimitiveMesh::gather(), PatchTools::gatherAndMerge(), GAMGAgglomeration::gatherList(), Pstream::gatherList(), genericFvPatchField< Type >::genericFvPatchField(), genericPointPatchField< Type >::genericPointPatchField(), searchableSurfaceCollection::getField(), triSurfaceMesh::getField(), distributedTriSurfaceMesh::getField(), surfaceFieldValue::getFieldValues(), edgeMeshFormatsCore::getLineNoComment(), surfaceFormatsCore::getLineNoComment(), meshRefinement::getMasterEdges(), meshRefinement::getMasterPoints(), combineFaces::getMergeSets(), boundaryMesh::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(), searchableSphere::getRegion(), searchableExtrudedCircle::getRegion(), searchablePlate::getRegion(), searchableDisk::getRegion(), searchableCylinder::getRegion(), searchableSurfaceCollection::getRegion(), searchableBox::getRegion(), triSurfaceMesh::getRegion(), distributedTriSurfaceMesh::getRegion(), coupledPolyPatch::getRotation(), hexRef8::getSplitPoints(), removePoints::getUnrefimentSet(), cellLooper::getVertEdgesNonFace(), triSurfaceTools::getVertexTriangles(), cellLooper::getVertFacesNonEdge(), searchableSphere::getVolumeType(), searchableCylinder::getVolumeType(), searchableBox::getVolumeType(), triSurfaceMesh::getVolumeType(), addPatchCellLayer::globalEdgeFaces(), cylindricalCS::globalToLocal(), triSurfaceTools::greenRefine(), chemPointISAT< CompType, ThermoType >::grow(), lduMatrix::H(), lduMatrix::H1(), FaceCellWave< Type, TrackingData >::handleAMICyclicPatches(), FaceCellWave< Type, TrackingData >::handleProcPatches(), mapPolyMesh::hasMotionPoints(), heThermo< BasicSolidThermo, MixtureType >::he(), waveSuperposition::height(), heheuPsiThermo< BasicPsiThermo, MixtureType >::heu(), hexRef8::hexRef8(), particle< Type >::hitCyclicAMIPatch(), particle< Type >::hitCyclicPatch(), Distribution< Type >::index(), indexedOctree< Foam::treeDataFace >::indexedOctree(), injectionModelList::info(), transferModelList::info(), surfaceFieldValue::initialise(), LduMatrix< Type, DType, LUType >::initMatrixInterfaces(), lduMatrix::initMatrixInterfaces(), processorPolyPatch::initOrder(), distribution::insertMissingKeys(), correlationFunction< Type >::integral(), Constant< Type >::integrate(), TableBase< Type >::integrate(), FieldFunction1< Function1Type >::integrate(), linearInterpolationWeights::integrationWeights(), interpolationCellPointFace< Type >::interpolate(), singleCellFvMesh::interpolate(), fvMeshSubset::interpolate(), Foam::interpolatePointToCell(), Foam::interpolateSplineXY(), lookupProfile::interpolateWeights(), bladeModel::interpolateWeights(), Foam::interpolateXY(), meshToMesh::interpolationMethodAMI(), intersectedSurface::intersectedSurface(), gradingDescriptors::inv(), 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(), cylindricalCS::localToGlobal(), fileOperation::lookupProcessorsPath(), lookupProfile::lookupProfile(), basicThermo::lookupThermo(), cellCuts::loopPoints(), LUscalarMatrix::LUscalarMatrix(), cellModel::mag(), primitiveMesh::makeFaceCentresAndAreas(), faceCoupleInfo::makeMap(), epsilonWallFunctionFvPatchScalarField::manipulateMatrix(), omegaWallFunctionFvPatchScalarField::manipulateMatrix(), Field< Foam::Vector2D >::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(), processorPolyPatch::matchFace(), 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< streamLineParticle >::move(), regionModel1D::moveMesh(), polyTopoChange::movePoints(), primitiveMesh::movePoints(), Foam::multiply(), phaseProperties::name(), NamedEnum< directionType, 3 >::names(), surfaceFeatures::nearestEdges(), surfaceFeatures::nearestFeatEdge(), extendedEdgeMesh::nearestFeatureEdge(), face::nearestPointClassify(), surfaceFeatures::nearestSamples(), surfaceFeatures::nearestSurfEdge(), cellModel::nEdges(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::nEdges(), primitiveMesh::nEdges(), polyBoundaryMesh::neighbourEdges(), combustionModel::New(), basicChemistryModel::New(), chemistryTabulationMethod< ReactionThermo, ThermoType >::New(), chemistryReductionMethod< ReactionThermo, ThermoType >::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()(), ListPlusEqOp< T, Size >::operator()(), listPlusEqOp< T >::operator()(), minEqOp< labelPair >::operator()(), faceEqOp< T, CombineOp >::operator()(), combineEqOp< Type, TrackingData >::operator()(), inversePointDistanceDiffusivity::operator()(), csvTableReader< Type >::operator()(), ListAppendEqOp< T >::operator()(), offsetOp< face >::operator()(), LduMatrix< Type, DType, LUType >::operator*=(), lduMatrix::operator*=(), labelRanges::const_iterator::operator++(), Foam::operator<<(), CompactIOField< Type, BaseType >::operator=(), cellTable::operator=(), DynamicField< T, SizeInc, SizeMult, SizeDiv >::operator=(), Foam::operator==(), Foam::operator>>(), cell::opposingFace(), cell::opposingFaceLabel(), processorPolyPatch::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(), fvFieldDecomposer::patchFieldDecomposer::patchFieldDecomposer(), boundaryMesh::patchify(), patchInjection::patchInjectedMassTotals(), patchInjection::patchInjection(), patchInteractionDataList::patchInteractionDataList(), pairPatchAgglomeration::patchLevel(), AMIInterpolation::patchMagSf(), boundaryMesh::patchNames(), 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::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(), pressureInletOutletVelocityFvPatchVectorField::pressureInletOutletVelocityFvPatchVectorField(), 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(), surfaceFieldValue::processSameTypeValues(), 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(), specieCoeffs::reactionStr(), NASedgeFormat::read(), OBJsurfaceFormat< Face >::read(), NASsurfaceFormat< Face >::read(), tabulated6DoFAcceleration::read(), OBJedgeFormat::read(), VTKedgeFormat::read(), VTKsurfaceFormat< Face >::read(), TRIsurfaceFormat< Face >::read(), STARCDsurfaceFormat< Face >::read(), tabulated6DoFMotion::read(), STARCDedgeFormat::read(), STLsurfaceFormat< Face >::read(), regIOobject::read(), boundaryMesh::read(), refinementHistory::read(), STARCD::readBoundary(), STARCD::readCells(), dynamicRefineFvMesh::readDict(), Time::readDict(), ReactingParcel< ParcelType >::readFields(), ReactingMultiphaseParcel< ParcelType >::readFields(), functionObjectList::readFunctionObject(), regIOobject::readHeaderOk(), mappedPatchBase::readListOrField(), decomposedBlockData::readMasterHeader(), boundaryMesh::readTriSurface(), surfMesh::readUpdate(), polyMesh::readUpdate(), ensightParts::recalculate(), mapDistributeBase::receive(), InteractionLists< typename CloudType::parcelType >::receiveReferredData(), ensightPart::reconstruct(), processorMeshes::reconstructPoints(), triSurfaceTools::redGreenRefine(), PFA< CompType, ThermoType >::reduceMechanism(), DAC< CompType, ThermoType >::reduceMechanism(), DRGEP< CompType, ThermoType >::reduceMechanism(), referredWallFace::referredWallFace(), dynamicRefineFvMesh::refine(), 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(), manualRenumber::renumber(), zoltanRenumber::renumber(), SloanRenumber::renumber(), springRenumber::renumber(), structuredRenumber::renumber(), renumberMethod::renumber(), snappySnapDriver::repatchToSurface(), cyclicRepeatAMIPolyPatch::resetAMI(), cyclicACMIPolyPatch::resetAMI(), logFiles::resetNames(), polyMesh::resetPrimitives(), lduMatrix::residual(), refinementHistory::resize(), faceAreaWeightAMI::restartUncoveredSourceFace(), GAMGAgglomeration::restrictFaceField(), pairPatchAgglomeration::restrictField(), GAMGAgglomeration::restrictField(), face::reverseFace(), pressureInletOutletVelocityFvPatchVectorField::rmap(), thermalBaffleFvPatchScalarField::rmap(), noiseFFT::RMSmeanPf(), face::sameVertices(), multiNormal::sample(), waveSuperposition::scale(), motionSmootherAlgo::scaleMesh(), globalIndex::scatter(), Pstream::scatterList(), mapDistributeBase::schedule(), searchableExtrudedCircle::searchableExtrudedCircle(), searchableSurfaces::searchableSurfaces(), timeSelector::select(), scalarRanges::selected(), timeSelector::selected(), surfaceFeatures::selectFeatureEdges(), Foam::selectManifoldEdges(), dynamicRefineFvMesh::selectRefineCells(), dynamicRefineFvMesh::selectUnrefinePoints(), mapDistributeBase::send(), InteractionLists< typename CloudType::parcelType >::sendReferredData(), coupledPolyPatch::separated(), Foam::setBlockFaceCorrespondence(), fvMeshSubset::setCellSubset(), Time::setControls(), repatchPolyTopoChanger::setFaceZone(), boundaryMesh::setFeatureEdges(), SemiImplicitSource< Type >::setFieldData(), 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(), functionObjectList::setTimeStep(), removePoints::setUnrefinement(), combineFaces::setUnrefinement(), hexRef8::setUnrefinement(), UnsortedMeshedSurface< Face >::setZones(), globalMeshData::sharedPoints(), liquidMixtureProperties::sigma(), searchableSurfacesQueries::signedDistance(), 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(), argList::size(), CompactListList< T, Container >::sizes(), SLGThermo::SLGThermo(), symGaussSeidelSmoother::smooth(), GaussSeidelSmoother::smooth(), nonBlockingGaussSeidelSmoother::smooth(), snappyRefineDriver::snappyRefineDriver(), basicSymmetryFvPatchField< Type >::snGradTransformDiag(), fixedNormalSlipFvPatchField< Type >::snGradTransformDiag(), partialSlipFvPatchField< Type >::snGradTransformDiag(), solidBodyMotionSolver::solidBodyMotionSolver(), solidMixtureProperties::solidMixtureProperties(), PCG::solve(), PBiCG::solve(), smoothSolver::solve(), PBiCGStab::solve(), rigidBodyMeshMotionSolver::solve(), rigidBodyMeshMotion::solve(), GAMGSolver::solve(), TDACChemistryModel< CompType, 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(), streamLineParticle::streamLineParticle(), 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(), faceZoneSet::sync(), globalMeshData::syncData(), syncTools::syncEdgeList(), syncTools::syncEdgeMap(), globalMeshData::syncPointData(), syncTools::syncPointList(), syncTools::syncPointMap(), meshRefinement::testSyncPointList(), TGaussSeidelSmoother< Type, DType, LUType >::TGaussSeidelSmoother(), heThermo< BasicSolidThermo, MixtureType >::THE(), thermoSingleLayer::thermoSingleLayer(), targetCoeffTrim::thetag(), pointToPointPlanarInterpolation::timeNames(), ListHashTable< T, Key, Hash >::toc(), CV2D::toPoint2D(), totalFlowRateAdvectiveDiffusiveFvPatchScalarField::totalFlowRateAdvectiveDiffusiveFvPatchScalarField(), MeshedSurface< Foam::face >::transcribe(), DynamicList< Foam::Tensor >::transfer(), MeshedSurface< Foam::face >::transfer(), Foam::transform(), fft::transform(), cylindrical::transform(), FaceCellWave< Type, TrackingData >::transform(), Foam::transformList(), porosityModel::transformModelData(), globalIndexAndTransform::transformPatches(), Foam::transformPoints(), rigidBodyMotion::transformPoints(), cyclicAMIPolyPatch::transformPosition(), cyclicPolyPatch::transformPosition(), cylindrical::transformTensor(), STARCDCoordinateRotation::transformVector(), EulerCoordinateRotation::transformVector(), axesRotation::transformVector(), cylindrical::transformVector(), triSurfaceSearch::tree(), face::triangles(), MeshedSurface< Foam::face >::triangulate(), triSurfaceTools::triangulateFaceCentre(), surfaceFeatures::trimFeatures(), triSurface::triSurfInstance(), waveAtmBoundaryLayerSuperposition::UGas(), waveSuperposition::UGas(), waveSuperposition::ULiquid(), masterUncollatedFileOperation::uniformFile(), Foam::uniqueOrder(), Foam::unitSet(), dynamicRefineFvMesh::unrefine(), sampledSurfaces::update(), dynamicRefineFvMesh::update(), AMIInterpolation::update(), directionInfo::updateCell(), waveInletOutletFvPatchField< Type >::updateCoeffs(), waveDisplacementPointPatchVectorField::updateCoeffs(), turbulentTemperatureRadCoupledMixedFvPatchScalarField::updateCoeffs(), externalWallHeatFluxTemperatureFvPatchScalarField::updateCoeffs(), patchEdgeFaceRegions::updateFace(), processorGAMGInterfaceField::updateInterfaceMatrix(), meshRefinement::updateList(), LduMatrix< Type, DType, LUType >::updateMatrixInterfaces(), lduMatrix::updateMatrixInterfaces(), points0MotionSolver::updateMesh(), patchInjectionBase::updateMesh(), componentDisplacementMotionSolver::updateMesh(), processorPolyPatch::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(), thermoSingleLayer::updateSurfaceTemperatures(), kinematicSingleLayer::updateSurfaceVelocities(), PackedBoolList::used(), USERD_get_gold_variable_info(), USERD_set_filenames(), patchEdgeFaceRegions::valid(), OneConstant< Type >::value(), Constant< Type >::value(), TableBase< Type >::value(), FieldFunction1< Function1Type >::value(), splineInterpolationWeights::valueWeights(), linearInterpolationWeights::valueWeights(), waveSuperposition::velocity(), vtkInsertNextOpenFOAMPoint(), 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(), xmgraceSetWriter< Type >::write(), rawSetWriter< Type >::write(), gnuplotSetWriter< Type >::write(), thirdBodyEfficiencies::write(), OBJsurfaceFormat< Face >::write(), GTSsurfaceFormat< 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(), SolidReaction< ReactionThermo >::write(), OBJstream::write(), blockFace::write(), patchIdentifier::write(), writer< Foam::SphericalTensor >::write(), primitiveEntry::write(), nastranSurfaceWriter::write(), OFstreamCollator::write(), pressureInletOutletVelocityFvPatchVectorField::write(), ParticleCollector< CloudType >::write(), forceCoeffs::write(), regionSizeDistribution::write(), streamLine::write(), STLsurfaceFormat< Face >::writeAscii(), STLsurfaceFormat< Face >::writeBinary(), forces::writeBins(), decomposedBlockData::writeBlocks(), STARCDsurfaceFormatCore::writeCase(), STARCDedgeFormat::writeCase(), ensightPartFaces::writeConnectivity(), vtkSurfaceWriter::writeData(), Foam::writeEntry(), rotorDiskSource::writeField(), ensightPart::writeFieldList(), ReactingParcel< ParcelType >::writeFields(), fieldValueDelta::writeFileHeader(), WRLsurfaceFormatCore::writeHeader(), VTKedgeFormat::writeHeader(), VTKsurfaceFormatCore::writeHeader(), rawSurfaceWriter::writeHeader(), AMIMethod::writeIntersectionOBJ(), Foam::meshTools::writeOBJ(), triSurfaceTools::writeOBJ(), surfaceFeatures::writeObj(), extendedEdgeMesh::writeObj(), ensightPart::writeScalarField(), searchableSurfaces::writeStats(), edgeMesh::writeStats(), extendedEdgeMesh::writeStats(), extendedCellToFaceStencil::writeStencilStats(), ensightPart::writeVectorField(), TableBase< Type >::x(), liquidMixtureProperties::X(), CompositionModel< Foam::ReactingCloud< Foam::DSMCCloud > >::X(), interpolation2DTable< scalar >::Xi(), liquidMixtureProperties::Xs(), Foam::XstepForwardsToNextPoint(), TableBase< Type >::y(), phaseProperties::Y(), liquidMixtureProperties::Y(), meshRefinement::zonify(), csvTableReader< Type >::~csvTableReader(), ensightPartCells::~ensightPartCells(), ensightPartFaces::~ensightPartFaces(), ISAT< CompType, ThermoType >::~ISAT(), LeastSquaresVectors< Stencil >::~LeastSquaresVectors(), masterOFstream::~masterOFstream(), medialAxisMeshMover::~medialAxisMeshMover(), RaviPetersen::~RaviPetersen(), skewCorrectionVectors::~skewCorrectionVectors(), thermalBaffle::~thermalBaffle(), TRIsurfaceFormatCore::~TRIsurfaceFormatCore(), UIPstream::~UIPstream(), and UOPstream::~UOPstream().

◆ null()

const Foam::List< T > & null ( )
inlinestatic

Return a null List.

Definition at line 117 of file ListI.H.

◆ clone()

Foam::autoPtr< Foam::List< T > > clone ( ) const
inline

Clone.

Definition at line 108 of file ListI.H.

Referenced by cellZone::clone(), pointZone::clone(), and faceZone::clone().

Here is the caller graph for this function:

◆ size() [2/2]

◆ resize() [1/2]

void resize ( const label  newSize)
inline

Alias for setSize(const label)

Definition at line 137 of file ListI.H.

Referenced by polyMeshFilter::filter(), polyMeshFilter::filterEdges(), minEqOpFace::operator()(), dynamicRefineFvMesh::readDict(), and faceAreaIntersect::triangulate().

Here is the caller graph for this function:

◆ resize() [2/2]

void resize ( const label  newSize,
const T a 
)
inline

Alias for setSize(const label, const T&)

Definition at line 144 of file ListI.H.

◆ setSize() [1/2]

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(), interRegionExplicitPorositySource::addSup(), 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(), coupledPolyPatch::calcTransformTensors(), meshRefinement::calculateEdgeWeights(), GAMGAgglomeration::calculateRegionMaster(), pointMVCWeight::calcWeights(), primitiveMeshTools::cellClosedness(), cellMatcher::cellMatcher(), fvMotionSolver::cellMotionBoundaryTypes(), boundaryMesh::changeFaces(), MeshedSurface< Foam::face >::checkFaces(), edgeCollapser::checkMeshQuality(), GAMGAgglomeration::checkRestriction(), ensightPartFaces::classify(), polyMesh::clearPrimitives(), refinementHistory::clone(), cellShape::collapsedFaces(), extendedCellToFaceStencil::collectData(), extendedFaceToCellStencil::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(), simpleGeomDecomp::decompose(), LUscalarMatrix::decompose(), mapPatchChange::deletedPatches(), displacementInterpolationMotionSolver::displacementInterpolationMotionSolver(), 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(), faceTriangulation::faceTriangulation(), searchablePlateFeatures::features(), refinementSurfaces::findAllHigherIntersections(), searchableSurfacesQueries::findAllIntersections(), searchableSurfacesQueries::findAnyIntersection(), refinementSurfaces::findHigherIntersection(), coordinateSystems::findIndices(), ZoneMesh< 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(), polyMeshAdder::findSharedPoints(), 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(), boundaryMesh::getNTris(), 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(), linearInterpolationWeights::integrationWeights(), 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(), basicThermo::lookupThermo(), LUscalarMatrix::LUscalarMatrix(), mapDistribute::mapDistribute(), mapDistributeBase::mapDistributeBase(), fvMesh::mapFields(), boundaryMesh::markFaces(), PatchTools::markZones(), triSurface::markZones(), PatchTools::matchEdges(), Foam::matchPoints(), PatchTools::matchPoints(), hexMatcher::matchShape(), tetMatcher::matchShape(), wedgeMatcher::matchShape(), tetWedgeMatcher::matchShape(), pyrMatcher::matchShape(), prismMatcher::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< directionType, 3 >::names(), IOobjectList::names(), objectRegistry::names(), extendedEdgeMesh::nearestFeatureEdge(), extendedEdgeMesh::nearestFeatureEdgeByType(), surfaceFeatures::nearestSurfEdge(), polyBoundaryMesh::neighbourEdges(), basicSolidChemistryModel::New(), 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(), oldCyclicPolyPatch::order(), processorPolyPatch::order(), cyclicPolyPatch::order(), cyclicAMIPolyPatch::order(), indexedOctree< Foam::treeDataFace >::overlaps(), argList::parse(), ParticleCollector< CloudType >::ParticleCollector(), AMIInterpolation::patchMagSf(), boundaryMesh::patchNames(), 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(), FixedValueConstraint< Type >::read(), STARCDedgeFormat::read(), primitiveEntry::read(), regIOobject::read(), functionObjectList::read(), boundaryMesh::read(), STARCD::readBoundary(), STARCD::readCells(), masterUncollatedFileOperation::readHeader(), mappedPatchBase::readListOrField(), STARCD::readPoints(), boundaryMesh::readTriSurface(), mapDistributeBase::receive(), ensightPart::reconstruct(), EFA< CompType, ThermoType >::reduceMechanism(), PFA< CompType, ThermoType >::reduceMechanism(), DAC< CompType, ThermoType >::reduceMechanism(), DRGEP< CompType, 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(), boundaryMesh::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(), SortableListEFA< Type >::setSize(), SortableListDRGEP< 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< directionType, 3 >::strings(), PatchTools::subsetMap(), triSurface::subsetMeshMap(), surfacePatchIOList::surfacePatchIOList(), surfZoneIOList::surfZoneIOList(), syncTools::swapBoundaryCellList(), syncTools::swapBoundaryCellPositions(), ListHashTable< T, Key, Hash >::toc(), externalCoupledTemperatureMixedFvPatchScalarField::transferData(), externalCoupledMixedFvPatchField< scalar >::transferData(), boundaryMesh::triangulate(), MeshedSurface< Foam::face >::triangulate(), triSurfaceTools::triangulate(), triSurfaceTools::triangulateFaceCentre(), boundaryMesh::triangulateLocal(), 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(), linearInterpolationWeights::valueWeights(), vtkUnstructuredReader::vtkUnstructuredReader(), waveSuperposition::waveSuperposition(), NamedEnum< directionType, 3 >::words(), forceCoeffs::write(), streamLine::write(), and decomposedBlockData::writeBlocks().

◆ setSize() [2/2]

void setSize ( const label  newSize,
const T a 
)

Reset size of List and value for new elements.

Definition at line 327 of file List.C.

◆ clear()

void clear ( )
inline

Clear the list, i.e. set size to zero.

Definition at line 124 of file ListI.H.

Referenced by regIOobject::addWatch(), KinematicCloud< Cloud< basicKinematicCollidingParcel > >::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< streamLineParticle >::move(), minEqOpFace::operator()(), minEqOp< labelPair >::operator()(), SortableList< T >::operator=(), patchProbes::patchProbes(), Foam::pow(), TRIsurfaceFormat< Face >::read(), STARCDsurfaceFormat< Face >::read(), STARCDedgeFormat::read(), STLsurfaceFormat< Face >::read(), regIOobject::read(), Time::read(), STARCD::readBoundary(), STARCD::readCells(), Time::readDict(), Time::readModifiedObjects(), 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(), while(), and meshReader::writeMesh().

◆ append() [1/3]

void append ( const T t)
inline

Append an element at the end of the list.

Definition at line 177 of file ListI.H.

Referenced by singleProcessorFaceSetsConstraint::add(), cellTable::addCellZones(), Foam::debug::addDebugObject(), Foam::debug::addDimensionedConstantObject(), Foam::debug::addDimensionSetObject(), Foam::debug::addInfoObject(), Foam::debug::addOptimisationObject(), unwatchedIOdictionary::addWatch(), regIOobject::addWatch(), hashedWordList::append(), KinematicCloud< Cloud< basicKinematicCollidingParcel > >::buildCellOccupancy(), createShellMesh::calcPointRegions(), cellVolumeWeightMethod::calculateAddressing(), directMethod::calculateAddressing(), GAMGAgglomeration::checkRestriction(), commSchedule::commSchedule(), hexRef8::consistentSlowRefinement(), hexRef8::consistentSlowRefinement2(), curvatureSeparation::curvatureSeparation(), decompositionMethod::decompositionMethod(), cellZoneSet::deleteSet(), pointZoneSet::deleteSet(), snappyLayerDriver::doLayers(), edgeSurface::edgeSurface(), Foam::findEtcDirs(), Foam::findEtcFiles(), removeCells::getExposedFaces(), triSurfaceTools::greenRefine(), meshToMesh::mapAndOpTgtToSrc(), PatchTools::markZone(), triSurface::markZone(), meshToMeshMethod::maskCells(), meshRefinement::mergeBaffles(), meshRefinement::meshedPatches(), findCellParticle::move(), Cloud< streamLineParticle >::move(), NamedEnum< directionType, 3 >::names(), combustionModel::New(), basicChemistryModel::New(), chemistryTabulationMethod< ReactionThermo, ThermoType >::New(), chemistryReductionMethod< ReactionThermo, ThermoType >::New(), minEqOpFace::operator()(), listPlusEqOp< T >::operator()(), indexedOctree< Foam::treeDataFace >::overlaps(), boundaryMesh::patchify(), AMIInterpolation::patchMagSf(), VTKsurfaceFormat< Face >::read(), functionObjectList::readFunctionObject(), 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(), functionObjectList::setTimeStep(), Foam::fvc::smooth(), meshRefinement::splitMeshRegions(), Foam::fvc::spread(), Foam::fvc::sweep(), faceZoneSet::sync(), triSurfaceTools::triangulate(), and externalDisplacementMeshMover::updateMesh().

◆ append() [2/3]

void append ( const UList< T > &  lst)
inline

Append a List at the end of this list.

Definition at line 184 of file ListI.H.

◆ append() [3/3]

void append ( const UIndirectList< T > &  lst)
inline

Append a UIndirectList at the end of this list.

Definition at line 203 of file ListI.H.

◆ transfer() [1/3]

void transfer ( List< T > &  a)

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(), searchableSurfaceToFaceZone::applyToSet(), setToCellZone::applyToSet(), faceZoneToFaceZone::applyToSet(), setToPointZone::applyToSet(), setToFaceZone::applyToSet(), setAndNormalToFaceZone::applyToSet(), setsToFaceZone::applyToSet(), createShellMesh::calcPointRegions(), partialFaceAreaWeightAMI::calculate(), directAMI::calculate(), mapNearestAMI::calculate(), faceAreaWeightAMI::calculate(), cellVolumeWeightMethod::calculateAddressing(), mapNearestMethod::calculateAddressing(), directMethod::calculateAddressing(), boundaryMesh::changeFaces(), 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(), streamLineParticle::move(), NamedEnum< directionType, 3 >::names(), cellCuts::nonAnchorPoints(), minEqOp< labelPair >::operator()(), ifEqEqOp< value >::operator()(), indexedOctree< Foam::treeDataFace >::overlaps(), patchInteractionDataList::patchInteractionDataList(), OBJedgeFormat::read(), STARCDedgeFormat::read(), 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(), boundaryMesh::setExtraEdges(), 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().

◆ transfer() [2/3]

void transfer ( DynamicList< T, SizeInc, SizeMult, SizeDiv > &  a)

Transfer the contents of the argument List into this list.

and annul the argument list

Definition at line 355 of file List.C.

◆ transfer() [3/3]

void transfer ( SortableList< T > &  a)

Transfer the contents of the argument List into this list.

and annul the argument list

Definition at line 365 of file List.C.

◆ newElmt()

T & newElmt ( const label  i)
inline

Return subscript-checked element of UList.

Definition at line 151 of file ListI.H.

◆ shallowCopy()

void shallowCopy ( const UList< T > &  )
delete

Disallow implicit shallowCopy.

◆ operator=() [1/9]

◆ operator=() [2/9]

void operator= ( const List< T > &  a)

Assignment operator. Takes linear time.

Definition at line 401 of file List.C.

◆ operator=() [3/9]

void operator= ( List< T > &&  a)

Move assignment operator.

Definition at line 415 of file List.C.

◆ operator=() [4/9]

void operator= ( const SLList< T > &  lst)

Assignment to SLList operator. Takes linear time.

Definition at line 429 of file List.C.

◆ operator=() [5/9]

void operator= ( const UIndirectList< T > &  lst)

Assignment to UIndirectList operator. Takes linear time.

Definition at line 450 of file List.C.

◆ operator=() [6/9]

void operator= ( const BiIndirectList< T > &  lst)

Assignment to BiIndirectList operator. Takes linear time.

Definition at line 458 of file List.C.

◆ operator=() [7/9]

void operator= ( std::initializer_list< T lst)

Assignment to an initializer list.

Definition at line 466 of file List.C.

◆ operator=() [8/9]

void operator= ( const T t)
inline

Assignment of all entries to the given value.

Definition at line 218 of file ListI.H.

◆ operator=() [9/9]

void operator= ( const zero  )
inline

Assignment of all entries to zero.

Definition at line 225 of file ListI.H.

Friends And Related Function Documentation

◆ operator>>

Istream& operator>> ( Istream ,
List< T > &   
)
friend

Read List from Istream, discarding contents of existing List.


The documentation for this class was generated from the following files: