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< point, 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< point >, Field< PointType >, Field< symmTensor >, Field< T >, Field< tensor >, Field< TypeGrad >, BinSum< IndexType, List, CombineOp >, cellClassification, cellShape, cellToCellStencil, CompactIOList< T, BaseType >, DynamicList< T, SizeInc, SizeMult, SizeDiv >, faceToCellStencil, faceTriangulation, IOList< T >, ITstream, polynomialFunction [private]
, ProcessorTopology< Container, ProcPatch >, pTraits< List< T > >, SortableList< T >, surfacePatchIOList, surfZoneIOList, and zone.
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 T * | reverse_iterator |
Reverse iterator for reverse traversal of UList. More... | |
typedef const T * | 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 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 (const Xfer< List< T >> &) | |
Construct by transferring the parameter contents. 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... | |
Xfer< List< T > > | xfer () |
Transfer contents to the Xfer container. 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= (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 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... | |
void | writeEntry (Ostream &) const |
Write the UList as a dictionary entry. More... | |
void | writeEntry (const word &keyword, Ostream &) const |
Write the UList as a dictionary entry with keyword. 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 60 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 163 of file ListI.H.
Referenced by wideBandAbsorptionEmission::aCont(), isoSurface::adaptPatchFields(), 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(), Foam::allocateMutex(), Foam::allocateThread(), AMIInterpolation< SourcePatch, TargetPatch >::AMIInterpolation(), blockEdge::appendEndPoints(), directMethod::appendToDirectSeeds(), searchableSurfaceToFaceZone::applyToSet(), faceZoneToFaceZone::applyToSet(), setToCellZone::applyToSet(), setToPointZone::applyToSet(), setToFaceZone::applyToSet(), setAndNormalToFaceZone::applyToSet(), setsToFaceZone::applyToSet(), face::areaInContact(), argList::argList(), pressureInletOutletVelocityFvPatchVectorField::autoMap(), Field< Foam::Vector2D >::autoMap(), fvPatchField< Type >::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(), cachedRandom::cachedRandom(), faceZone::calcCellLayers(), primitiveMesh::calcCells(), enrichedPatch::calcEnrichedFaces(), polyDualMesh::calcFeatures(), add::calcFieldType(), subtract::calcFieldType(), CentredFitSnGradData< Polynomial >::calcFit(), FitData< CentredFitSnGradData< Polynomial >, extendedCentredCellToFaceStencil, Polynomial >::calcFit(), fixedCoeff::calcForce(), powerLaw::calcForce(), DarcyForchheimer::calcForce(), solidification::calcForce(), forces::calcForcesMoment(), faceLimitedGrad< Type >::calcGrad(), cellLimitedGrad< Type >::calcGrad(), triSurfaceSearch::calcInside(), triSurfaceTools::calcInterpolationWeights(), TDILUPreconditioner< Type, DType, LUType >::calcInvD(), cellMatcher::calcLocalFaces(), zone::calcLookupMap(), mappedPatchBase::calcMapping(), fieldMinMax::calcMinMaxFields(), snappySnapDriver::calcNearestSurface(), polyLine::calcParam(), primitiveMesh::calcPointOrder(), createShellMesh::calcPointRegions(), DICPreconditioner::calcReciprocalD(), DILUPreconditioner::calcReciprocalD(), addPatchCellLayer::calcSidePatch(), snappySnapDriver::calcSnapDistance(), fixedCoeff::calcTransformModelData(), DarcyForchheimer::calcTransformModelData(), cyclicPolyPatch::calcTransforms(), coupledPolyPatch::calcTransformTensors(), directAMI< SourcePatch, TargetPatch >::calculate(), mapNearestAMI< SourcePatch, TargetPatch >::calculate(), viewFactor::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(), argList::check(), faceZone::checkAddressing(), primitiveMesh::checkCellsZipUp(), primitiveMesh::checkClosedBoundary(), primitiveMesh::checkCommonOrder(), 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(), searchableSurfaces::checkNormalOrientation(), PatchTools::checkOrientation(), ZoneMesh< cellZone, polyMesh >::checkParallelSync(), polyBoundaryMesh::checkParallelSync(), PrimitivePatch< Face, ::Foam::List, pointField, point >::checkPointManifold(), primitiveMesh::checkPointNearness(), hexRef8::checkRefinementLevels(), GAMGAgglomeration::checkRestriction(), ReactingCloud< Foam::DSMCCloud >::checkSuppliedComposition(), timeVaryingMappedFixedValueFvPatchField< Type >::checkTable(), PrimitivePatch< Face, ::Foam::List, pointField, point >::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(), extendedFaceToCellStencil::collectData(), extendedCellToFaceStencil::collectData(), mappedPatchBase::collectSamples(), CollisionRecordList< vector, vector >::CollisionRecordList(), commSchedule::commSchedule(), UPstream::commsStruct::commsStruct(), mapDistributeBase::compact(), refinementHistory::compact(), CompactListList< T, Container >::CompactListList(), face::compare(), removeFaces::compatibleRemoves(), edgeCollapser::consistentCollapse(), hexRef8::consistentSlowRefinement(), hexRef8::consistentSlowRefinement2(), molecule::constantProperties::constantProperties(), polyMeshFilter::copyMesh(), Foam::MULES::correct(), inversePointDistanceDiffusivity::correct(), patchInjection::correct(), limitTemperature::correct(), transferModel::correct(), EDC< Type >::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(), cuttingPlane::cut(), geomCellLooper::cut(), topoCellLooper::cut(), Foam::meshTools::cutDirToEdge(), heThermo< BasicSolidThermo, MixtureType >::Cv(), Foam::cwd(), cyclicACMIGAMGInterface::cyclicACMIGAMGInterface(), 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(), cyclicACMIFvPatch::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(), dynamicRefineFvMesh::dynamicRefineFvMesh(), extendedEdgeMesh::edgeBaffles(), primitiveMesh::edgeFaces(), extendedEdgeMesh::edgeNormals(), PatchTools::edgeOwner(), cellModel::edges(), face::edges(), triSurfaceTools::edgeSide(), edgeSurface::edgeSurface(), directionInfo::edgeToFaceIndex(), triSurfaceMesh::edgeTree(), globalIndexAndTransform::encodeTransformIndex(), energyJumpAMIFvPatchScalarField::energyJumpAMIFvPatchScalarField(), energyJumpFvPatchScalarField::energyJumpFvPatchScalarField(), directionInfo::enterDomain(), StaticHashTable< T, Key, Hash >::erase(), dynamicRefineFvMesh::error(), mapDistributeBase::exchangeAddressing(), extendedEdgeMesh::extendedEdgeMesh(), extendedFeatureEdgeMesh::extendedFeatureEdgeMesh(), extendedUpwindCellToFaceStencil::extendedUpwindCellToFaceStencil(), 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(), sampledIsoSurfaceCell::faces(), sampledCuttingPlane::faces(), distanceSurface::faces(), sampledIsoSurface::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(), polyMeshTetDecomposition::findBasePoint(), refinementParameters::findCells(), Time::findClosestTime(), patchProbes::findElements(), Foam::findEtcFile(), polyMeshTetDecomposition::findFaceBasePts(), refinementSurfaces::findHigherIntersection(), cellVolumeWeightMethod::findInitialSeeds(), mapNearestMethod::findInitialSeeds(), directMethod::findInitialSeeds(), refinementSurfaces::findInside(), Time::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(), searchableSurfacesQueries::findNearest(), triSurfaceRegionSearch::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::findSharedBasePoint(), polyMeshAdder::findSharedPoints(), polyMeshTetDecomposition::findTet(), pointToPointPlanarInterpolation::findTime(), fileOperation::findTimes(), extendedEdgeMesh::flipNormals(), faceCorrectedSnGrad< Type >::fullGradCorrection(), GAMGSolver::GAMGSolver(), heThermo< BasicSolidThermo, MixtureType >::gamma(), globalIndex::gather(), lduPrimitiveMesh::gather(), PatchTools::gatherAndMerge(), GAMGAgglomeration::gatherList(), Pstream::gatherList(), isoSurface::generateFaceTriPoints(), 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(), searchableSphere::getNormal(), searchableExtrudedCircle::getNormal(), searchablePlate::getNormal(), searchableDisk::getNormal(), searchableCylinder::getNormal(), searchableSurfaceCollection::getNormal(), searchableBox::getNormal(), triSurfaceMesh::getNormal(), distributedTriSurfaceMesh::getNormal(), combineFaces::getOutsideFace(), cellDistFuncs::getPointNeighbours(), triSurfaceMeshPointSet::getRefPoint(), 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(), if(), Distribution< Type >::index(), indexedOctree< Foam::treeDataFace >::indexedOctree(), transferModelList::info(), injectionModelList::info(), surfaceFieldValue::initialise(), LduMatrix< Type, DType, LUType >::initMatrixInterfaces(), lduMatrix::initMatrixInterfaces(), processorPolyPatch::initOrder(), distribution::insertMissingKeys(), correlationFunction< Type >::integral(), Function1< Foam::Vector >::integrate(), TableBase< Type >::integrate(), polynomialFunction::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(), isoSurfaceCell::isoSurfaceCell(), 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(), 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(), 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(), snappySnapDriver::mergeZoneBaffles(), globalMeshData::mesh(), cellShape::meshEdges(), PrimitivePatch< Face, ::Foam::List, pointField, point >::meshEdges(), MeshedSurface< Foam::face >::MeshedSurface(), cellShape::meshFaces(), momentOfInertia::meshInertia(), meshTriangulation::meshTriangulation(), edgeIntersections::minEdgeLength(), SVD::minNonZeroS(), 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< Face, ::Foam::List, pointField, point >::nEdges(), primitiveMesh::nEdges(), polyBoundaryMesh::neighbourEdges(), basicChemistryModel::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< Face, ::Foam::List, pointField, point >::nPoints(), UPstream::nProcs(), refinementSurfaces::nRegions(), polyLine::nSegments(), molecule::constantProperties::nSites(), writeObjectsBase::objectNames(), projectVertex::operator point(), minEqOpFace::operator()(), listPlusEqOp< T >::operator()(), ListPlusEqOp< T, Size >::operator()(), minEqOp< labelPair >::operator()(), faceEqOp< T, CombineOp >::operator()(), combineEqOp< Type, TrackingData >::operator()(), nearestEqOp::operator()(), csvTableReader< Type >::operator()(), ListAppendEqOp< T >::operator()(), offsetOp< face >::operator()(), LduMatrix< Type, DType, LUType >::operator*=(), lduMatrix::operator*=(), labelRanges::const_iterator::operator++(), polynomialFunction::operator+=(), polynomialFunction::operator-=(), Foam::operator<<(), CompactIOField< T, BaseType >::operator=(), CompactIOList< face, label >::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(), argList::parse(), Foam::parseNASCoord(), ParticleCollector< CloudType >::ParticleCollector(), boundaryMesh::patchify(), patchInjection::patchInjectedMassTotals(), patchInjection::patchInjection(), patchInteractionDataList::patchInteractionDataList(), pairPatchAgglomeration::patchLevel(), boundaryMesh::patchNames(), patchZones::patchZones(), noiseFFT::Pdelta(), SprayCloud< Foam::DSMCCloud >::penetration(), 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(), projectEdge::position(), projectCurveEdge::position(), blockEdge::position(), noPreconditioner::precondition(), DICPreconditioner::precondition(), DILUPreconditioner::precondition(), GAMGPreconditioner::precondition(), diagonalPreconditioner::precondition(), FDICPreconditioner::precondition(), DILUPreconditioner::preconditionT(), Foam::preservePatchTypes(), pressureInletOutletVelocityFvPatchVectorField::pressureInletOutletVelocityFvPatchVectorField(), sampledPatchInternalField::print(), sampledPlane::print(), sampledCuttingPlane::print(), distanceSurface::print(), sampledPatch::print(), dynamicIndexedOctree< Foam::dynamicTreeDataPoint >::print(), indexedOctree< Foam::treeDataFace >::print(), fvMeshDistribute::printCoupleInfo(), fvMeshDistribute::printFieldInfo(), vtkUnstructuredReader::printFieldStats(), fvMeshDistribute::printMeshInfo(), GAMGProcAgglomeration::printStats(), Foam::printTable(), GAMGAgglomeration::procAgglomerateRestrictAddressing(), processorGAMGInterface::processorGAMGInterface(), fvFieldDecomposer::processorVolPatchFieldDecomposer::processorVolPatchFieldDecomposer(), surfaceFieldValue::processSameTypeValues(), faceAreaWeightAMI< SourcePatch, TargetPatch >::processSourceFace(), particle< Type >::procTetPt(), projectFace::project(), projectCurveEdge::projectCurveEdge(), projectEdge::projectEdge(), PrimitivePatch< Face, ::Foam::List, pointField, point >::projectFaceCentres(), PrimitivePatch< Face, ::Foam::List, pointField, point >::projectPoints(), projectVertex::projectVertex(), NASedgeFormat::read(), OBJsurfaceFormat< Face >::read(), NASsurfaceFormat< Face >::read(), OBJedgeFormat::read(), VTKsurfaceFormat< Face >::read(), tabulated6DoFAcceleration::read(), VTKedgeFormat::read(), STARCDsurfaceFormat< Face >::read(), tabulated6DoFMotion::read(), STARCDedgeFormat::read(), regIOobject::read(), boundaryMesh::read(), refinementHistory::read(), STARCD::readBoundary(), STARCD::readCells(), dynamicRefineFvMesh::readDict(), Time::readDict(), Foam::readDir(), 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(), cyclicACMIPolyPatch::resetAMI(), logFiles::resetNames(), polyMesh::resetPrimitives(), lduMatrix::residual(), refinementHistory::resize(), faceAreaWeightAMI< SourcePatch, TargetPatch >::restartUncoveredSourceFace(), GAMGAgglomeration::restrictFaceField(), pairPatchAgglomeration::restrictField(), GAMGAgglomeration::restrictField(), face::reverseFace(), pressureInletOutletVelocityFvPatchVectorField::rmap(), thermalBaffleFvPatchScalarField::rmap(), noiseFFT::RMSmeanPf(), face::sameVertices(), multiNormal::sample(), motionSmootherAlgo::scaleMesh(), globalIndex::scatter(), Pstream::scatterList(), mapDistributeBase::schedule(), searchableExtrudedCircle::searchableExtrudedCircle(), searchableSurfaces::searchableSurfaces(), timeSelector::select(), scalarRanges::selected(), timeSelector::selected(), surfaceFeatures::selectFeatureEdges(), 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< SourcePatch, TargetPatch >::setNextFaces(), mapNearestMethod::setNextNearestCells(), patchInjectionBase::setPositionAndCell(), removeCells::setRefinement(), duplicatePoints::setRefinement(), refinementIterator::setRefinement(), perfectInterface::setRefinement(), faceCollapser::setRefinement(), boundaryCutter::setRefinement(), removePoints::setRefinement(), combineFaces::setRefinement(), createShellMesh::setRefinement(), tetDecomposer::setRefinement(), removeFaces::setRefinement(), meshCutAndRemove::setRefinement(), meshCutter::setRefinement(), edgeCollapser::setRefinement(), addPatchCellLayer::setRefinement(), hexRef8::setRefinement(), sampledSet::setSamples(), CompactListList< T, Container >::setSize(), data::setSolverPerformance(), masterUncollatedFileOperation::setTime(), removePoints::setUnrefinement(), combineFaces::setUnrefinement(), hexRef8::setUnrefinement(), UnsortedMeshedSurface< Face >::setZones(), globalMeshData::sharedPoints(), liquidMixtureProperties::sigma(), searchableSurfacesQueries::signedDistance(), triSurfaceGeoMesh::size(), triSurfacePointGeoMesh::size(), fvFieldDecomposer::patchFieldDecomposer::size(), dynamicTreeDataPoint::size(), pointFieldDecomposer::patchFieldDecomposer::size(), weightedFvPatchFieldMapper::size(), procLduMatrix::size(), distributedWeightedFvPatchFieldMapper::size(), pointMapper::size(), cellMapper::size(), singleCellFvMesh::agglomPatchFieldMapper::size(), solidMixtureProperties::size(), fvFieldDecomposer::processorVolPatchFieldDecomposer::size(), liquidMixtureProperties::size(), treeDataPoint::size(), facePointPatch::size(), fvFieldDecomposer::processorSurfacePatchFieldDecomposer::size(), treeDataEdge::size(), treeDataCell::size(), treeDataFace::size(), meshToMesh0::patchFieldInterpolator::size(), GAMGInterface::size(), argList::size(), CompactListList< T, Container >::sizes(), SLGThermo::SLGThermo(), GaussSeidelSmoother::smooth(), symGaussSeidelSmoother::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(), 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(), triSurface::subsetMesh(), MeshedSurface< Foam::face >::subsetMesh(), triSurface::subsetMeshMap(), Foam::ListListOps::subSizes(), surfaceFeatures::surfaceFeatures(), surfaceIntersection::surfaceIntersection(), PrimitivePatch< Face, ::Foam::List, pointField, point >::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(), StaticHashTable< 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(), waveSuperposition::UGas(), waveSuperposition::ULiquid(), masterUncollatedFileOperation::uniformFile(), uniformInterpolatedDisplacementPointPatchVectorField::uniformInterpolatedDisplacementPointPatchVectorField(), Foam::uniqueOrder(), Foam::unitSet(), dynamicRefineFvMesh::unrefine(), sampledSurfaces::update(), dynamicRefineFvMesh::update(), AMIInterpolation< SourcePatch, TargetPatch >::update(), directionInfo::updateCell(), turbulentTemperatureRadCoupledMixedFvPatchScalarField::updateCoeffs(), externalWallHeatFluxTemperatureFvPatchScalarField::updateCoeffs(), patchEdgeFaceRegions::updateFace(), processorGAMGInterfaceField::updateInterfaceMatrix(), topoSet::updateLabels(), meshRefinement::updateList(), LduMatrix< Type, DType, LUType >::updateMatrixInterfaces(), lduMatrix::updateMatrixInterfaces(), patchInjectionBase::updateMesh(), points0MotionSolver::updateMesh(), componentDisplacementMotionSolver::updateMesh(), processorPolyPatch::updateMesh(), CellZoneInjection< CloudType >::updateMesh(), removePoints::updateMesh(), cellZoneSet::updateMesh(), pointZoneSet::updateMesh(), boundaryCutter::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(), Function1< Foam::Vector >::value(), TableBase< Type >::value(), polynomialFunction::value(), splineInterpolationWeights::valueWeights(), linearInterpolationWeights::valueWeights(), vtkInsertNextOpenFOAMPoint(), vtkUnstructuredReader::vtkUnstructuredReader(), wallLayerCells::wallLayerCells(), WallLocalSpringSliderDashpot< CloudType >::WallLocalSpringSliderDashpot(), meshReader::warnDuplicates(), meshRefinement::weightedSum(), graph::wordify(), AMIInterpolation< SourcePatch, TargetPatch >::wordTointerpolationMethod(), vtkSetWriter< Type >::write(), ensightSetWriter< Type >::write(), X3DsurfaceFormat< Face >::write(), WRLsurfaceFormat< Face >::write(), rawSetWriter< Type >::write(), xmgraceSetWriter< Type >::write(), gnuplotSetWriter< Type >::write(), SMESHsurfaceFormat< Face >::write(), thirdBodyEfficiencies::write(), foamSurfaceWriter::write(), OBJsurfaceFormat< Face >::write(), GTSsurfaceFormat< Face >::write(), csvSetWriter< Type >::write(), VTKsurfaceFormat< Face >::write(), OBJedgeFormat::write(), AC3DsurfaceFormat< Face >::write(), OFFsurfaceFormat< Face >::write(), TRIsurfaceFormat< Face >::write(), ensightBinaryStream::write(), STARCDsurfaceFormat< Face >::write(), rawSurfaceWriter::write(), OFSsurfaceFormat< Face >::write(), STARCDedgeFormat::write(), OBJstream::write(), patchIdentifier::write(), blockFace::write(), writer< Foam::SphericalTensor >::write(), primitiveEntry::write(), solidReaction< ReactionThermo >::write(), nastranSurfaceWriter::write(), pressureInletOutletVelocityFvPatchVectorField::write(), ParticleCollector< CloudType >::write(), forceCoeffs::write(), streamLine::write(), regionSizeDistribution::write(), STLsurfaceFormat< Face >::writeAscii(), STLsurfaceFormat< Face >::writeBinary(), forces::writeBins(), decomposedBlockData::writeBlocks(), STARCDsurfaceFormatCore::writeCase(), STARCDedgeFormat::writeCase(), ensightPartFaces::writeConnectivity(), vtkSurfaceWriter::writeData(), dxSurfaceWriter::writeData(), triSurface::writeDX(), UList< Foam::wordRe >::writeEntry(), rotorDiskSource::writeField(), ensightPart::writeFieldList(), ReactingParcel< ParcelType >::writeFields(), fieldValueDelta::writeFileHeader(), WRLsurfaceFormatCore::writeHeader(), VTKsurfaceFormatCore::writeHeader(), VTKedgeFormat::writeHeader(), rawSurfaceWriter::writeHeader(), AMIMethod< SourcePatch, TargetPatch >::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().
|
inlinestatic |
|
inline |
Clone.
Definition at line 108 of file ListI.H.
Referenced by pointZone::clone(), cellZone::clone(), and faceZone::clone().
|
inline |
Return the number of elements in the UList.
Definition at line 170 of file ListI.H.
Referenced by labelRanges::add(), DynamicField< T, SizeInc, SizeMult, SizeDiv >::append(), PackedList< 2 >::capacity(), cellShape::nPoints(), ITstream::nRemainingTokens(), labelRanges::const_iterator::operator++(), cellShape::points(), ITstream::print(), ITstream::read(), DynamicField< T, SizeInc, SizeMult, SizeDiv >::remove(), PackedList< 2 >::reserve(), SortableList< T >::reverseSort(), ITstream::rewind(), globalMeshData::sharedPointGlobalLabels(), PackedList< 2 >::shrink(), SortableList< T >::sort(), primitiveEntry::write(), and cellClassification::writeStats().
|
inline |
Alias for setSize(const label)
Definition at line 137 of file ListI.H.
Referenced by polyMeshFilter::filter(), polyMeshFilter::filterEdges(), minEqOpFace::operator()(), and dynamicRefineFvMesh::readDict().
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(), refinementHistory::add(), cellTable::addCellZones(), addPatchCellLayer::addedCells(), lduPrimitiveMesh::addInterfaces(), edgeSurface::addIntersectionEdges(), interRegionExplicitPorositySource::addSup(), regIOobject::addWatch(), MeshedSurface< Foam::face >::addZones(), GAMGAgglomeration::agglomerateLduAddressing(), extendedEdgeMesh::allNearestFeatureEdges(), face::areaInContact(), argList::argList(), FreeStream< CloudType >::autoMap(), meshRefinement::balance(), bladeModel::bladeModel(), booleanSurface::booleanSurface(), searchableExtrudedCircle::boundingSpheres(), searchablePlane::boundingSpheres(), searchableBox::boundingSpheres(), searchableSphere::boundingSpheres(), searchableDisk::boundingSpheres(), searchablePlate::boundingSpheres(), searchableCylinder::boundingSpheres(), searchableSurfaceCollection::boundingSpheres(), triSurfaceMesh::boundingSpheres(), cachedRandom::cachedRandom(), 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(), removeFaces::compatibleRemoves(), fvPatch::constraintTypes(), polyPatch::constraintTypes(), inverseFaceDistanceDiffusivity::correct(), inversePointDistanceDiffusivity::correct(), 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(), StaticHashTable< 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(), searchableSurfacesQueries::findNearest(), triSurfaceRegionSearch::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(), fileOperation::findTimes(), FreeStream< CloudType >::FreeStream(), globalIndex::gather(), PatchTools::gatherAndMerge(), GAMGAgglomeration::gatherList(), searchableSurfaceCollection::getField(), triSurfaceMesh::getField(), distributedTriSurfaceMesh::getField(), combineFaces::getMergeSets(), searchablePlane::getNormal(), searchableSphere::getNormal(), searchableExtrudedCircle::getNormal(), searchablePlate::getNormal(), searchableDisk::getNormal(), searchableCylinder::getNormal(), searchableSurfaceCollection::getNormal(), searchableBox::getNormal(), triSurfaceMesh::getNormal(), distributedTriSurfaceMesh::getNormal(), boundaryMesh::getNTris(), searchablePlane::getRegion(), searchableSphere::getRegion(), searchableExtrudedCircle::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(), GlobalIOList< Type >::GlobalIOList(), triSurfaceTools::greenRefine(), hashedWordList::hashedWordList(), Distribution< Type >::index(), sortLabelledTri::indices(), meshToMeshMethod::initialise(), AMIMethod< SourcePatch, TargetPatch >::initialise(), linearInterpolationWeights::integrationWeights(), GAMGInterface::interfaceInternalField(), AMIInterpolation< SourcePatch, TargetPatch >::interpolateToSource(), AMIInterpolation< SourcePatch, TargetPatch >::interpolateToTarget(), intersectedSurface::intersectedSurface(), cellZoneSet::invert(), pointZoneSet::invert(), faceZoneSet::invert(), Foam::invertManyToMany(), Foam::invertOneToMany(), isoSurface::isoSurface(), isoSurfaceCell::isoSurfaceCell(), 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(), prismMatcher::matchShape(), wedgeMatcher::matchShape(), tetMatcher::matchShape(), tetWedgeMatcher::matchShape(), pyrMatcher::matchShape(), cellToFaceStencil::merge(), cellToCellStencil::merge(), edgeIntersections::merge(), meshRefinement::mergeBaffles(), edgeMesh::mergeEdges(), Foam::mergePoints(), edgeMesh::mergePoints(), globalMeshData::mergePoints(), meshTriangulation::meshTriangulation(), molecule::molecule(), engineValve::movingPatchIDs(), NamedEnum< directionType, 3 >::names(), IOobjectList::names(), objectRegistry::names(), extendedEdgeMesh::nearestFeatureEdge(), extendedEdgeMesh::nearestFeatureEdgeByType(), surfaceFeatures::nearestSurfEdge(), polyBoundaryMesh::neighbourEdges(), basicChemistryModel::New(), basicSolidChemistryModel::New(), cellCuts::nonAnchorPoints(), Distribution< Type >::normalised(), ListPlusEqOp< T, Size >::operator()(), minEqOpFace::operator()(), minEqOp< labelPair >::operator()(), procLess::operator()(), listPlusEqOp< T >::operator()(), nearestEqOp::operator()(), ListAppendEqOp< T >::operator()(), polynomialFunction::operator+=(), polynomialFunction::operator-=(), Foam::operator<<(), CompactIOField< T, BaseType >::operator=(), CompactIOList< face, label >::operator=(), Foam::operator>>(), regionCoupledBase::order(), oldCyclicPolyPatch::order(), processorPolyPatch::order(), cyclicAMIPolyPatch::order(), cyclicPolyPatch::order(), indexedOctree< Foam::treeDataFace >::overlaps(), argList::parse(), ParticleCollector< CloudType >::ParticleCollector(), boundaryMesh::patchNames(), noiseFFT::Pdelta(), SprayCloud< Foam::DSMCCloud >::penetration(), phaseProperties::phaseProperties(), phasePropertiesList::phasePropertiesList(), pointFieldReconstructor::pointFieldReconstructor(), PatchTools::pointNormals(), Foam::polyMeshZipUpCells(), argList::postProcess(), snappySnapDriver::preSmoothPatch(), fvMeshDistribute::printCoupleInfo(), Foam::printTable(), Distribution< Type >::raw(), Foam::blockMeshTools::read(), NASedgeFormat::read(), GTSsurfaceFormat< Face >::read(), FixedValueConstraint< Type >::read(), STARCDedgeFormat::read(), primitiveEntry::read(), functionObjectList::read(), regIOobject::read(), boundaryMesh::read(), STARCD::readBoundary(), STARCD::readCells(), Foam::readDir(), 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(), SortableListDRGEP< Type >::setSize(), SortableListEFA< Type >::setSize(), CompactListList< T, Container >::setSize(), UnsortedMeshedSurface< Face >::setSize(), bufferedAccumulator< scalar >::setSizes(), data::setSolverPerformance(), 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(), StaticHashTable< 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(), AMIInterpolation< SourcePatch, TargetPatch >::wordTointerpolationMethod(), forceCoeffs::write(), streamLine::write(), and decomposedBlockData::writeBlocks().
|
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(), hashedWordList::clear(), TRIsurfaceFormatCore::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(), 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(), STARCDsurfaceFormat< Face >::read(), STARCDedgeFormat::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(), and meshReader::writeMesh().
|
inline |
Append an element at the end of the list.
Definition at line 184 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(), removeFaces::compatibleRemoves(), 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(), minEqOpFace::operator()(), listPlusEqOp< T >::operator()(), indexedOctree< Foam::treeDataFace >::overlaps(), boundaryMesh::patchify(), VTKsurfaceFormat< Face >::read(), functionObjectList::readFunctionObject(), edgeMesh::regions(), logFiles::resetName(), logFiles::resetNames(), timeSelector::select0(), 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(), triSurfaceTools::triangulate(), externalDisplacementMeshMover::updateMesh(), and AMIInterpolation< SourcePatch, TargetPatch >::wordTointerpolationMethod().
|
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(), searchableSurfaceToFaceZone::applyToSet(), setToCellZone::applyToSet(), faceZoneToFaceZone::applyToSet(), setToPointZone::applyToSet(), setToFaceZone::applyToSet(), setAndNormalToFaceZone::applyToSet(), setsToFaceZone::applyToSet(), polyDualMesh::calcFeatures(), createShellMesh::calcPointRegions(), partialFaceAreaWeightAMI< SourcePatch, TargetPatch >::calculate(), directAMI< SourcePatch, TargetPatch >::calculate(), mapNearestAMI< SourcePatch, TargetPatch >::calculate(), faceAreaWeightAMI< SourcePatch, TargetPatch >::calculate(), cellVolumeWeightMethod::calculateAddressing(), mapNearestMethod::calculateAddressing(), directMethod::calculateAddressing(), boundaryMesh::changeFaces(), mapDistributeBase::compact(), removeFaces::compatibleRemoves(), polyMeshFilter::copyMesh(), meshWave::correct(), geomCellLooper::cut(), topoCellLooper::cut(), cyclicACMIGAMGInterface::cyclicACMIGAMGInterface(), cyclicAMIGAMGInterface::cyclicAMIGAMGInterface(), decomposedBlockData::decomposedBlockData(), cellZoneSet::deleteSet(), pointZoneSet::deleteSet(), faceZoneSet::deleteSet(), fvMeshDistribute::distribute(), mapDistributeBase::distribute(), edgeMesh::edgeMesh(), extendedUpwindCellToFaceStencil::extendedUpwindCellToFaceStencil(), hexRef8::faceLevel(), triSurfaceSearch::findLineAll(), searchableBox::findLineAll(), fileOperation::findTimes(), extendedEdgeMesh::flipNormals(), globalIndex::gather(), PatchTools::gatherAndMerge(), genericFvPatchField< Type >::genericFvPatchField(), genericPointPatchField< Type >::genericPointPatchField(), GlobalIOList< Type >::GlobalIOList(), List< Field< scalar > >::List(), PatchTools::markZone(), triSurface::markZone(), polyBoundaryMesh::matchGroups(), cellToCellStencil::merge(), cellToFaceStencil::merge(), edgeMesh::mergePoints(), 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(), IndirectListAddressing::resetAddressing(), MeshedSurfaceIOAllocator::resetFaces(), polyMesh::resetPrimitives(), SortableList< T >::reverseSort(), boundaryMesh::setExtraEdges(), hexRef8::setInstance(), hexRef8::setRefinement(), snappyRefineDriver::snappyRefineDriver(), SortableListEFA< Type >::sort(), SortableListDRGEP< 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(), UList< Foam::wordRe >::writeEntry(), and TRIsurfaceFormatCore::~TRIsurfaceFormatCore().
void transfer | ( | DynamicList< T, SizeInc, SizeMult, SizeDiv > & | a | ) |
void transfer | ( | SortableList< T > & | a | ) |
|
inline |
Transfer contents to the Xfer container.
Definition at line 177 of file ListI.H.
Referenced by extendedEdgeMesh::add(), searchableSurfaces::checkIntersection(), surfaceFormatsCore::checkSupport(), fvMeshDistribute::distribute(), distributedTriSurfaceMesh::distribute(), mappedPatchBase::distribute(), masterUncollatedFileOperation::findTimes(), extendedEdgeMesh::flipNormals(), NamedEnum< directionType, 3 >::names(), minEqOp< labelPair >::operator()(), OFFsurfaceFormat< Face >::read(), TRIsurfaceFormat< Face >::read(), STLsurfaceFormat< Face >::read(), STARCDCore::readPoints(), mappedPatchBase::reverseDistribute(), PackedBoolList::used(), PackedList< 2 >::values(), AMIInterpolation< SourcePatch, TargetPatch >::wordTointerpolationMethod(), and streamLine::write().
Assignment to UList operator. Takes linear time.
Definition at line 376 of file List.C.
Referenced by cellShape::collapse(), decomposedBlockData::decomposedBlockData(), GlobalIOList< Type >::GlobalIOList(), GlobalIOList< Type >::operator=(), hashedWordList::operator=(), SortableListDRGEP< Type >::operator=(), SortableListEFA< Type >::operator=(), SortableList< T >::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.