A 1D vector of objects of type <T>, where the size of the vector is known and can be used for subscript bounds checking, etc.
More...
|
| | UList (const UList< T > &)=default |
| | Copy construct. More...
|
| |
| constexpr | UList () noexcept |
| | Default construct, zero-sized and nullptr. More...
|
| |
| | UList (T *__restrict__ v, const label len) noexcept |
| | Construct from components. More...
|
| |
| label | fcIndex (const label i) const noexcept |
| | The forward circular index. The next index in the list which returns to the first at the end of the list. More...
|
| |
| label | rcIndex (const label i) const noexcept |
| | The reverse circular index. The previous index in the list which returns to the last at the beginning of the list. More...
|
| |
| const T & | fcValue (const label i) const |
| | Return forward circular value (ie, next value in the list) More...
|
| |
| T & | fcValue (const label i) |
| | Return forward circular value (ie, next value in the list) More...
|
| |
| const T & | rcValue (const label i) const |
| | Return reverse circular value (ie, previous value in the list) More...
|
| |
| T & | rcValue (const label i) |
| | Return reverse circular value (ie, previous value in the list) More...
|
| |
| const T * | cdata () const noexcept |
| | Return pointer to the underlying array serving as data storage. More...
|
| |
| T * | data () noexcept |
| | Return pointer to the underlying array serving as data storage. More...
|
| |
| const char * | cdata_bytes () const noexcept |
| | Return pointer to the underlying array serving as data storage,. More...
|
| |
| char * | data_bytes () noexcept |
| | Return pointer to the underlying array serving as data storage,. More...
|
| |
| T & | front () |
| | Access first element of the list, position [0]. More...
|
| |
| const T & | front () const |
| | Access first element of the list. More...
|
| |
| T & | back () |
| | Access last element of the list, position [size()-1]. More...
|
| |
| const T & | back () const |
| | Access last element of the list, position [size()-1]. More...
|
| |
| std::streamsize | size_bytes () const noexcept |
| | Number of contiguous bytes for the List data. More...
|
| |
| std::streamsize | byteSize () const |
| | Number of contiguous bytes for the List data, runtime FatalError if type is not contiguous. More...
|
| |
| void | checkStart (const label start) const |
| | Check start is within valid range [0,size) More...
|
| |
| void | checkSize (const label size) const |
| | Check size is within valid range [0,size]. More...
|
| |
| void | checkRange (const label start, const label len) const |
| | Check that start and length define a valid range. More...
|
| |
| void | checkIndex (const label i) const |
| | Check index is within valid range [0,size) More...
|
| |
| bool | uniform () const |
| | True if all entries have identical values, and list is non-empty. More...
|
| |
| bool | contains (const T &val) const |
| | True if the value is contained in the list. More...
|
| |
| bool | contains (const T &val, label pos, label len=-1) const |
| | Is the value contained in the list? More...
|
| |
| label | find (const T &val) const |
| | Find index of the first occurrence of the value. More...
|
| |
| label | find (const T &val, label pos, label len=-1) const |
| | Find index of the first occurrence of the value. More...
|
| |
| label | rfind (const T &val, label pos=-1) const |
| | Find index of the last occurrence of the value. More...
|
| |
| void | moveFirst (const label i) |
| | Move element to the first position. More...
|
| |
| void | moveLast (const label i) |
| | Move element to the last position. More...
|
| |
| void | swapFirst (const label i) |
| | Swap element with the first element. Fatal on an empty list. More...
|
| |
| void | swapLast (const label i) |
| | Swap element with the last element. Fatal on an empty list. More...
|
| |
| void | shallowCopy (T *__restrict__ ptr, const label len) noexcept |
| | Copy the pointer and size. More...
|
| |
| void | shallowCopy (const UList< T > &list) noexcept |
| | Copy the pointer and size held by the given UList. More...
|
| |
| void | deepCopy (const UList< T > &list) |
| | Copy elements of the given UList. Sizes must match! More...
|
| |
| template<class Addr > |
| void | deepCopy (const IndirectListBase< T, Addr > &list) |
| | Copy elements of the given indirect list. Sizes must match! More...
|
| |
| SubList< T > | slice (const label pos, label len=-1) |
| | Return SubList slice (non-const access) - no range checking. More...
|
| |
| const SubList< T > | slice (const label pos, label len=-1) const |
| | Return SubList slice (const access) - no range checking. More...
|
| |
| SubList< T > | slice (const labelRange &range) |
| | Return SubList slice (non-const access) - with range checking. More...
|
| |
| const SubList< T > | slice (const labelRange &range) const |
| | Return SubList slice (const access) - with range checking. More...
|
| |
| T & | operator[] (const label i) |
| | Return element of UList. More...
|
| |
| const T & | operator[] (const label i) 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 &val) |
| | Assignment of all entries to the given value. More...
|
| |
| void | operator= (const Foam::zero) |
| | Assignment of all entries to zero. More...
|
| |
| iterator | begin () noexcept |
| | Return an iterator to begin traversing the UList. More...
|
| |
| iterator | end () noexcept |
| | Return an iterator to end traversing the UList. More...
|
| |
| iterator | begin (const label i) noexcept |
| | Return iterator at offset i from begin, clamped to [0,size] range. More...
|
| |
| const_iterator | cbegin () const noexcept |
| | Return const_iterator to begin traversing the constant UList. More...
|
| |
| const_iterator | cend () const noexcept |
| | Return const_iterator to end traversing the constant UList. More...
|
| |
| const_iterator | begin () const noexcept |
| | Return const_iterator to begin traversing the constant UList. More...
|
| |
| const_iterator | end () const noexcept |
| | Return const_iterator to end traversing the constant UList. More...
|
| |
| const_iterator | cbegin (const label i) const noexcept |
| | Return const_iterator at offset i from begin, clamped to [0,size] range. More...
|
| |
| const_iterator | begin (const label i) const noexcept |
| | Return const_iterator at offset i from begin, clamped to [0,size] range. 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...
|
| |
| bool | empty () const noexcept |
| | True if List is empty (ie, size() is zero) More...
|
| |
| label | size () const noexcept |
| | The number of elements in the container. More...
|
| |
| label | capacity () const noexcept |
| | Size of the underlying storage. More...
|
| |
| void | swap (UList< T > &list) noexcept |
| | Swap content with another UList of the same type in constant time. More...
|
| |
| bool | operator== (const UList< T > &list) const |
| | Equality operation on ULists of the same type. More...
|
| |
| bool | operator!= (const UList< T > &list) const |
| | The opposite of the equality operation. Takes linear time. More...
|
| |
| bool | operator< (const UList< T > &list) const |
| | Compare two ULists lexicographically. Takes linear time. More...
|
| |
| bool | operator> (const UList< T > &list) const |
| | Compare two ULists lexicographically. Takes linear time. More...
|
| |
| bool | operator<= (const UList< T > &list) const |
| | Return true if !(a > b). Takes linear time. More...
|
| |
| bool | operator>= (const UList< T > &list) const |
| | Return true if !(a < b). Takes linear time. More...
|
| |
| Istream & | readList (Istream &is) |
| | Read List contents from Istream. More...
|
| |
| void | writeEntry (const word &keyword, Ostream &os) const |
| | Write the List as a dictionary entry with keyword. More...
|
| |
| Ostream & | writeList (Ostream &os, const label shortLen=0) const |
| | Write List, with line-breaks in ASCII when length exceeds shortLen. More...
|
| |
| template<class TypeT = T> |
| std::enable_if< std::is_same< bool, TypeT >::value, bool >::type | test (const label i) const |
| | Test bool value at specified position, always false for out-of-range access. More...
|
| |
| template<class TypeT = T> |
| std::enable_if< std::is_same< bool, TypeT >::value, bool >::type | get (const label i) const |
| | Return bool value at specified position, always false for out-of-range access. More...
|
| |
| template<class TypeT = T> |
| std::enable_if< std::is_same< bool, TypeT >::value, bool >::type | unset (const label i) |
| | Unset the bool entry at specified position, always false for out-of-range access. More...
|
| |
| T & | first () |
| | Access first element of the list, position [0]. More...
|
| |
| const T & | first () const |
| | Access first element of the list. More...
|
| |
| T & | last () |
| | Access last element of the list, position [size()-1]. More...
|
| |
| const T & | last () const |
| | Access last element of the list, position [size()-1]. More...
|
| |
| bool | found (const T &val, label pos=0) const |
| | Same as contains() More...
|
| |
| template<> |
| const bool & | operator[] (const label i) const |
| |
| template<> |
| UPstream::commsStruct & | operator[] (const label procID) |
| |
| template<> |
| const UPstream::commsStruct & | operator[] (const label procID) const |
| |
| template<> |
| Foam::UPstream::commsStruct & | operator[] (const label procID) |
| |
| template<> |
| const Foam::UPstream::commsStruct & | operator[] (const label procID) const |
| |
template<class T>
class Foam::UList< T >
A 1D vector of objects of type <T>, where the size of the vector is known and can be used for subscript bounds checking, etc.
Storage is not allocated during construction or use but is supplied to the constructor as an argument. This type of list is particularly useful for lists that refer to parts of existing lists such as SubList.
- Source files
-
Definition at line 105 of file HashTable.H.
| void size |
( |
const label |
n | ) |
|
|
inlineprotected |
Older name for setAddressableSize.
Definition at line 116 of file UList.H.
Referenced by AABBTree< Type >::AABBTree(), mapDistributeBase::accessAndFlip(), oversetFvMeshBase::active(), nullSpace::activeConstraints(), preserveBaffles::add(), fvMeshAdder::add(), polyMeshAdder::add(), extendedEdgeMesh::add(), ITstream::add_tokens(), fvMeshPrimitiveLduAddressing::addAddressing(), cyclicAMIPolyPatch::addAMIFaces(), topOVariablesBase::addBoundaryFacesToIsoline(), cellTable::addCellZones(), surfaceZonesInfo::addCellZonesToMesh(), topOVariablesBase::addCuttingFaceToIsoline(), velocityDampingConstraint::addDamping(), object::addData(), addPatchCellLayer::addedCells(), mapPatchChange::addedPatches(), surfaceZonesInfo::addFaceZonesToMesh(), oversetFvMeshBase::addInterpolation(), edgeSurface::addIntersectionEdges(), snappyLayerDriver::addLayers(), polyTopoChange::addMesh(), interRegionExplicitPorositySource::addSup(), faMatrix< Type >::addToInternalField(), fvMatrix< Type >::addToInternalField(), adjointSimple::addTopOFvOptions(), polyTopoChanger::addTopologyModifiers(), unwatchedIOdictionary::addWatch(), fileMonitorWatcher::addWatch(), MeshedSurface< Foam::face >::addZones(), adjointSolverManager::adjointSolverManager(), primitiveMeshGeometry::affectedCells(), polyMeshGeometry::affectedCells(), pairGAMGAgglomeration::agglomerate(), masterCoarsestGAMGProcAgglomeration::agglomerate(), singleCellFvMesh::agglomerate(), AMIInterpolation::agglomerate(), GAMGInterface::agglomerateCoeffs(), GAMGAgglomeration::agglomerateLduAddressing(), adjointSolverManager::aggregateSensitivities(), extendedEdgeMesh::allNearestFeaturePoints(), UPstream::allocateCommunicator(), quasiNewton::allocateHessian(), UPstream::allocateInterHostCommunicator(), UPstream::allocateIntraHostCommunicator(), LBFGS::allocateVectors(), AMIInterpolation::AMIInterpolation(), angularOscillatingDisplacementPointPatchVectorField::angularOscillatingDisplacementPointPatchVectorField(), angularOscillatingVelocityPointPatchVectorField::angularOscillatingVelocityPointPatchVectorField(), PDRblock::gridControl::append(), AMIInterpolation::append(), Foam::appendCsvLabels(), equationMaxIterCondition::apply(), Foam::applyPermutation(), faceZoneToFaceZone::applyToSet(), setToCellZone::applyToSet(), setToPointZone::applyToSet(), setAndNormalToFaceZone::applyToSet(), setToFaceZone::applyToSet(), searchableSurfaceToFaceZone::applyToSet(), setsToFaceZone::applyToSet(), cellToFaceZone::applyToSet(), face::areaInContact(), lumpedPointMovement::areas(), assemblyFaceAreaPairGAMGAgglomeration::assemblyFaceAreaPairGAMGAgglomeration(), bitSet::assign(), Foam::assignToProcessorGroup(), nullSpace::ATv(), Field< Foam::vector >::autoMap(), fvPatchField< vector >::autoMap(), extendedEdgeMesh::autoMap(), nullSpace::Av(), Foam::average(), snappySnapDriver::avgCellCentres(), binaryTree< CompType, ThermoType >::balance(), meshRefinement::balance(), Foam::meshTools::bandCompression(), STLAsciiParse::beginSolid(), Bezier::Bezier(), uniformBin::binAddr(), binaryTree< CompType, ThermoType >::binaryTreeSearch(), bitSet::bitSet(), bladeModel::bladeModel(), Foam::blankElementMasks(), isoSurfaceBase::blockCells(), meshRefinement::blockLeakFaces(), PDRblock::blockMeshDict(), booleanSurface::booleanSurface(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::boundaryFaces(), searchableExtrudedCircle::boundingSpheres(), searchableSurfaceCollection::boundingSpheres(), tetherPotentialList::buildPotentials(), pairPotentialList::buildPotentials(), SurfaceFilmModel< Foam::KinematicCloud< Cloud< basicKinematicCollidingParcel > > >::cacheFilmFields(), ReactingParcel< ParcelType >::calc(), primitiveMesh::calcCells(), holeToFace::calcClosure(), curvatureSeparation::calcCosAngle(), Foam::calcElementMasks(), enrichedPatch::calcEnrichedFaces(), addPatchCellLayer::calcExtrudeInfo(), faceCoupleInfo::calcFacePointAverages(), coupledPolyPatch::calcFaceTol(), polyDualMesh::calcFeatures(), add::calcFieldType(), subtract::calcFieldType(), cutCell::calcGeomDataCutFace(), faceLimitedGrad< Type >::calcGrad(), triSurfaceSearch::calcInside(), triSurfaceTools::calcInterpolationWeights(), TDILUPreconditioner< Type, DType, LUType >::calcInvD(), globalIndex::calcListOffsets(), mappedPatchBase::calcMapping(), snappySnapDriver::calcNearestSurface(), globalIndex::calcOffset(), globalIndex::calcOffsets(), polyLine::calcParam(), faPatch::calcPointEdges(), faPatch::calcPointLabels(), primitiveMesh::calcPointOrder(), createShellMesh::calcPointRegions(), Foam::calcProximityOfFeatureEdges(), Foam::calcProximityOfFeaturePoints(), globalIndex::calcRange(), globalIndex::calcRanges(), DICPreconditioner::calcReciprocalD(), DILUPreconditioner::calcReciprocalD(), distributedDILUPreconditioner::calcReciprocalD(), snappySnapDriver::calcSnapDistance(), cutFace::calcSubFace(), cutFacePLIC::calcSubFace(), cutFaceIso::calcSubFace(), cutFaceAdvect::calcSubFace(), cutFace::calcSubFaceCentreAndArea(), coupledFaPatch::calcTransformTensors(), coupledPolyPatch::calcTransformTensors(), correctedCellVolumeWeightMethod::calculate(), faceAreaWeightAMI2D::calculate(), viewFactor::calculate(), surfaceNoise::calculate(), mapNearestMethod::calculateAddressing(), calculatedProcessorGAMGInterface::calculatedProcessorGAMGInterface(), meshRefinement::calculateEdgeWeights(), parcelSelection::calculateFilter(), GAMGAgglomeration::calculateRegionMaster(), PackedList< 2 >::capacity(), deltaBoundary::cellCenters_d(), repatchPolyTopoChanger::changeAnchorPoint(), boundaryMesh::changeFaces(), polyTopoChange::changeMesh(), layerAdditionRemoval::changeTopology(), topoSetSource::check(), primitiveMesh::checkCellsZipUp(), primitiveMesh::checkClosedBoundary(), primitiveMesh::checkCommonOrder(), coordSet::checkDimensions(), sampledSet::checkDimensions(), primitiveMesh::checkDuplicateFaces(), triSurface::checkEdges(), primitiveMeshGeometry::checkFaceDotProduct(), polyMeshGeometry::checkFaceFlatness(), primitiveMesh::checkFaceOrthogonality(), MeshedSurface< Foam::face >::checkFaces(), Foam::checkFaceSizeMatch(), primitiveMeshGeometry::checkFaceTwist(), polyMeshGeometry::checkFaceTwist(), primitiveMesh::checkFaceVertices(), extractEulerianParticles::checkFaceZone(), Foam::checkFireEdges(), surfaceFeatures::checkFlatRegionEdge(), searchableSurfaces::checkIntersection(), entry::checkITstream(), dictionary::checkITstream(), hexRef8::checkMesh(), PatchTools::checkOrientation(), ZoneMesh< cellZone, polyMesh >::checkParallelSync(), primitiveMesh::checkPointNearness(), GAMGAgglomeration::checkRestriction(), ReactingCloud< Foam::DSMCCloud >::checkSuppliedComposition(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::checkTopology(), triSurface::checkTriangles(), polyMeshGeometry::checkTriangleTwist(), noiseModel::checkUniformTimeStep(), lduPrimitiveMesh::checkUpperTriangular(), primitiveMesh::checkUpperTriangular(), ensightFaces::classify(), extendedEdgeMesh::classifyEdge(), extendedEdgeMesh::classifyFeaturePoint(), PtrListDetail< const Foam::UList >::clone(), refinementHistory::clone(), Foam::cmptAv(), Foam::cmptMag(), Foam::cmptMagSqr(), Foam::cmptMax(), Foam::cmptMin(), cellShape::collapsedFaces(), triSurfaceTools::collapseEdges(), extendedCellToFaceStencil::collectData(), extendedFaceToCellStencil::collectData(), mappedPatchBase::collectSamples(), ORourkeCollision< CloudType >::collide(), CollisionRecordList< vector, vector >::CollisionRecordList(), processorColour::colour(), holeToFace::combine(), commSchedule::commSchedule(), triSurface::compactPoints(), MeshedSurface< Foam::face >::compactPoints(), face::compare(), removeFaces::compatibleRemoves(), Foam::ComplexField(), fromFile::computeControlPoints(), NURBS3DVolume::computeControlPointSensitivities(), conjugateGradient::computeCorrection(), constraintProjection::computeCorrection(), multiDimPolyFitter< T >::computeMatrixSource(), nullSpace::computeNewtonDirection(), adjointSolver::computeObjectiveSensitivities(), NURBS3DVolume::computeParametricCoordinates(), nullSpace::computeResiduals(), polyLine::concat(), edgeCollapser::consistentCollapse(), hexRef8::consistentSlowRefinement(), hexRef8::consistentSlowRefinement2(), MappedFile< Type >::constant(), nullSpace::constraintRelatedUpdate(), reconstructedDistanceFunction::constructRDF(), vtuAdaptor::convertField(), IntegralScaleBox< Type >::convolve(), Foam::ensightOutput::Detail::copyComponent(), polySurface::copySurface(), surfMesh::copySurface(), inversePointDistanceDiffusivity::correct(), injectionModelList::correct(), transferModel::correct(), wallDistAddressing::correct(), diffusionMulticomponent< ReactionThermo, ThermoType >::correct(), ensightMesh::correct(), directionalPressureGradientExplicitSource::correct(), particle< Type >::correctAfterParallelTransfer(), Foam::countConnectivity(), meshRefinement::countEdgeFaces(), removePoints::countPointUsage(), cyclicPolyPatch::coupledEdges(), cyclicPolyPatch::coupledPoints(), meshRefinement::createBaffles(), AABBTree< Type >::createBoxes(), distanceSurface::createGeometry(), box::createMap(), createShellMesh::createShellMesh(), inverseDistance::createStencil(), Foam::createTree(), meshRefinement::createZoneBaffles(), displacementInterpolationMotionSolver::curPoints(), triSurfaceTools::curvatures(), curvatureSeparation::curvatureSeparation(), hexCellLooper::cut(), geomCellLooper::cut(), topoCellLooper::cut(), cuttingSurfaceBase::cut(), extendedEdgeMesh::cut(), Foam::meshTools::cutDirToEdge(), cutFaceAdvect::cutPoints(), cyclicACMIGAMGInterface::cyclicACMIGAMGInterface(), cyclicAMIGAMGInterface::cyclicAMIGAMGInterface(), cyclicGAMGInterface::cyclicGAMGInterface(), noDecomp::decompose(), structuredDecomp::decompose(), randomDecomp::decompose(), simpleGeomDecomp::decompose(), metisLikeDecomp::decompose(), ptscotchDecomp::decompose(), multiLevelDecomp::decompose(), hierarchGeomDecomp::decompose(), decompositionMethod::decompose(), volBSplinesBase::decomposeDV(), metisLikeDecomp::decomposeGeneral(), faMeshDecomposition::decomposeMesh(), metisDecomp::decomposeSerial(), kahipDecomp::decomposeSerial(), scotchDecomp::decomposeSerial(), UList< Foam::vector >::deepCopy(), triSurfaceTools::delaunay2D(), cyclicFvPatch::delta(), cyclicFaPatch::delta(), cyclicACMIFvPatch::delta(), cyclicAMIFvPatch::delta(), linearInterpolation::derivative(), smoothHeaviside::derivative(), sinhInterpolation::derivative(), sigmoidalHeaviside::derivative(), SIMPInterpolation::derivative(), invBP::derivative(), expInterpolation::derivative(), BorrvallPeterssonInterpolation::derivative(), tanhInterpolation::derivative(), Matrix< RectangularMatrix< Type >, Type >::diag(), dimensionSets::dimensionSets(), meshRefinement::directionalRefine(), directions::directions(), faMeshDistributor::distribute(), refinementHistory::distribute(), mapDistribute::distribute(), distributedTriSurfaceMesh::distribute(), mapDistributeBase::distribute(), faMeshBoundaryHalo::distributeSparse(), Foam::dlLoaded(), Bezier::dndbBasedSensitivities(), NURBS3DVolume::dndbBasedSensitivities(), snappyLayerDriver::doLayers(), snappyVoxelMeshDriver::doRefine(), snappyRefineDriver::doRefine(), box::doRefineBoxes(), meshRefinement::doRemovePoints(), meshRefinement::doRestorePoints(), snappySnapDriver::doSnap(), meshRefinement::doSplitFaces(), meshRefinement::dumpIntersections(), Foam::duplicateOrder(), Bezier::dxdbFace(), extendedEdgeMesh::edgeBaffles(), primitiveMesh::edgeFaces(), extendedEdgeMesh::edgeNormals(), PatchTools::edgeOwner(), face::edges(), triSurfaceTools::edgeSide(), edgeSurface::edgeSurface(), directionInfo::edgeToFaceIndex(), globalIndex::empty(), globalIndexAndTransform::encodeTransformIndex(), directionInfo::enterDomain(), edgeInterpolationScheme< scalar >::euclidianInterpolate(), Pstream::exchange(), mapDistributeBase::exchangeAddressing(), Foam::PstreamDetail::exchangeConsensus(), Pstream::exchangeConsensus(), mapDistributeBase::exchangeMasks(), Pstream::exchangeSizes(), ifeqEntry::execute(), STLAsciiParseManual::execute(), surfaceDistance::execute(), functionObjectList::execute(), extractEulerianParticles::execute(), extendedEdgeMesh::extendedEdgeMesh(), extendedFeatureEdgeMesh::extendedFeatureEdgeMesh(), extendedUpwindCellToFaceStencil::extendedUpwindCellToFaceStencil(), Foam::extractData(), Foam::extractValues(), valuePointPatchField< vector >::extrapolateInternal(), FaceCellWave< Foam::wallPointData< bool > >::FaceCellWave(), faceCoupleInfo::faceCoupleInfo(), NASCore::faceDecomposition(), ABAQUSCore::faceDecomposition(), primitiveMesh::faceEdges(), lduMatrix::faceH(), LduMatrix< Type, DType, LUType >::faceH(), FaceInteraction< CloudType >::FaceInteraction(), hexRef8::faceLevel(), mappedPatchBase::facePoint(), FacePostProcessing< CloudType >::FacePostProcessing(), Foam::vtk::Tools::Faces(), prismMatcher::faceSizeMatch(), tetWedgeMatcher::faceSizeMatch(), wedgeMatcher::faceSizeMatch(), OppositeFaceCellWave< Type, TrackingData >::faceToCell(), PrimitivePatchInterpolation< Foam::PrimitivePatch >::faceToEdgeInterpolate(), tetIndices::faceTriIs(), featureEdgeMesh::featureEdgeMesh(), extendedEdgeMesh::featurePointNormals(), Foam::edgeMeshTools::featureProximity(), fft::fftRenumberRecurse(), boundaryDataSurfaceReader::fieldNames(), sigFpe::fillNan(), cellClassification::fillRegionEdges(), distanceSurface::filterFaceProximity(), distanceSurface::filterKeepNearestRegions(), distanceSurface::filterRegionProximity(), pointNoise::filterTimeData(), sensitivitySurfacePoints::finalisePointSensitivities(), searchableSurfacesQueries::findAllIntersections(), refinementSurfaces::findAllIntersections(), searchableSurfacesQueries::findAnyIntersection(), volBSplinesBase::findBoxID(), refinementParameters::findCells(), NURBS3DSurface::findClosestSurfacePoint(), TimePaths::findClosestTime(), TimePaths::findClosestTimeIndex(), shellSurfaces::findDirectionalLevel(), localPointRegion::findDuplicateFacePairs(), patchProbes::findElements(), Foam::findEtcEntry(), shellSurfaces::findHigherGapLevel(), refinementSurfaces::findHigherIntersection(), inverseDistance::findHoles(), cellVolumeWeightMethod::findInitialSeeds(), mapNearestMethod::findInitialSeeds(), directMethod::findInitialSeeds(), refinementSurfaces::findInside(), masterUncollatedFileOperation::findInstance(), fileOperation::findInstance(), shellSurfaces::findLevel(), triSurfaceSearch::findLine(), searchablePlane::findLine(), searchablePlate::findLine(), searchableDisk::findLine(), searchableCylinder::findLine(), searchableSurfaceWithGaps::findLine(), searchableSurfaceCollection::findLine(), searchableRotatedBox::findLine(), searchableBox::findLine(), searchableCone::findLine(), triSurfaceMesh::findLine(), searchableSphere::findLine(), triSurfaceSearch::findLineAll(), searchablePlane::findLineAll(), searchablePlate::findLineAll(), searchableDisk::findLineAll(), searchableCylinder::findLineAll(), searchableSurfaceWithGaps::findLineAll(), searchableSurfaceCollection::findLineAll(), searchableRotatedBox::findLineAll(), searchableBox::findLineAll(), searchableCone::findLineAll(), triSurfaceMesh::findLineAll(), searchableSphere::findLineAll(), distributedTriSurfaceMesh::findLineAll(), triSurfaceSearch::findLineAny(), searchableCylinder::findLineAny(), searchableRotatedBox::findLineAny(), searchableBox::findLineAny(), triSurfaceMesh::findLineAny(), searchableCone::findLineAny(), searchableSphere::findLineAny(), mappedPatchBase::findLocalSamples(), searchableSurfacesQueries::findNearest(), triSurfaceRegionSearch::findNearest(), triSurfaceSearch::findNearest(), searchablePlane::findNearest(), searchableExtrudedCircle::findNearest(), searchablePlate::findNearest(), searchableDisk::findNearest(), searchableCylinder::findNearest(), searchableRotatedBox::findNearest(), searchableBox::findNearest(), triSurfaceMesh::findNearest(), searchableCone::findNearest(), searchableSphere::findNearest(), distributedTriSurfaceMesh::findNearest(), primitiveMesh::findNearestCell(), refinementFeatures::findNearestEdge(), searchableSurfacesQueries::findNearestIntersection(), refinementSurfaces::findNearestIntersection(), refinementFeatures::findNearestPoint(), refinementSurfaces::findNearestRegion(), refinementFeatures::findNearestRegionEdge(), searchableExtrudedCircle::findParametricNearest(), NURBS3DVolume::findPointsInBox(), instant::findRange(), meshRefinement::findRegions(), mappedPatchBase::findSamples(), polyMeshAdder::findSharedPoints(), instant::findStart(), multiDimPolyFitter< T >::fitData(), FixedList< point, 2 >::FixedList(), faMeshTools::flattenEdgeField(), mapDistributeBase::flipAndCombine(), extendedEdgeMesh::flipNormals(), coupledFaPatch::forwardT(), PtrListDetail< const Foam::UList >::free(), interfaceTrackingFvMesh::freeSurfaceSnGradU(), faceCorrectedSnGrad< Type >::fullGradCorrection(), GAMGSolver::GAMGSolver(), lduPrimitiveMesh::gather(), externalCoupled::gatherAndCombine(), PatchTools::gatherAndMerge(), Pstream::gatherList(), globalIndex::gatherOp(), Foam::gAverage(), fvMeshDistribute::generateTestField(), GeometricBoundaryField< Foam::vector, Foam::fvPatchField, Foam::volMesh >::GeometricBoundaryField(), globalIndex::get(), coupledPolyPatch::getAnchorPoints(), Foam::getCommPattern(), Foam::getData(), zoneDistribute::getDatafromOtherProc(), Foam::getEdge(), GenericPatchGeoFieldsWriter< PatchType >::getFaceField(), Foam::ensightOutput::Detail::getFaceSizes(), searchableSurfaceCollection::getField(), triSurfaceMesh::getField(), distributedTriSurfaceMesh::getField(), zoneDistribute::getFields(), fileOperation::getGlobalHostIORanks(), fileOperation::getGlobalIORanks(), Foam::getHostGroupIds(), meshRefinement::getMasterEdges(), meshRefinement::getMasterPoints(), combineFaces::getMergeSets(), boundaryMesh::getNearest(), searchablePlane::getNormal(), searchableExtrudedCircle::getNormal(), searchablePlate::getNormal(), searchableDisk::getNormal(), searchableCylinder::getNormal(), searchableSurfaceCollection::getNormal(), searchableBox::getNormal(), triSurfaceMesh::getNormal(), searchableCone::getNormal(), searchableSphere::getNormal(), distributedTriSurfaceMesh::getNormal(), combineFaces::getOutsideFace(), cellDistFuncs::getPointNeighbours(), weightedPosition::getPoints(), Foam::ensightOutput::Detail::getPolysFacePoints(), Foam::ensightOutput::Detail::getPolysNFaces(), Foam::ensightOutput::Detail::getPolysNPointsPerFace(), triSurfaceMeshPointSet::getRefPoint(), searchablePlane::getRegion(), searchableExtrudedCircle::getRegion(), searchablePlate::getRegion(), searchableDisk::getRegion(), searchableCylinder::getRegion(), searchableSurfaceCollection::getRegion(), searchableRotatedBox::getRegion(), searchableBox::getRegion(), triSurfaceMesh::getRegion(), searchableCone::getRegion(), searchableSphere::getRegion(), distributedTriSurfaceMesh::getRegion(), coupledPolyPatch::getRotation(), hexRef8::getSplitPoints(), removePoints::getUnrefimentSet(), cellLooper::getVertEdgesNonFace(), triSurfaceTools::getVertexTriangles(), searchableCylinder::getVolumeType(), searchableBox::getVolumeType(), triSurfaceMesh::getVolumeType(), searchableCone::getVolumeType(), searchableSphere::getVolumeType(), distributedTriSurfaceMesh::getVolumeType(), meshRefinement::getZoneFaces(), topOZones::getZoneIDs(), cellCellStencil::globalCellCells(), addPatchCellLayer::globalEdgeFaces(), globalIndex::globalIndex(), cylindrical::globalToLocal(), lumpedPointState::good(), triSurfaceTools::greenRefine(), chemPointISAT< CompType, ThermoType >::grow(), lduMatrix::H(), lduMatrix::H1(), faMesh::haloFaceCentres(), faMesh::haloFaceNormals(), FaceCellWave< Foam::wallPointData< bool > >::handleAMICyclicPatches(), FaceCellWave< Foam::wallPointData< bool > >::handleProcPatches(), mapPolyMesh::hasMotionPoints(), heheuPsiThermo< BasicPsiThermo, MixtureType >::heu(), hexRef8::hexRef8(), particle< Type >::hitCyclicAMIPatch(), particle< Type >::hitCyclicPatch(), humidityTemperatureCoupledMixedFvPatchScalarField::humidityTemperatureCoupledMixedFvPatchScalarField(), if(), Foam::Im(), Distribution< Type >::index(), indexedOctree< Foam::treeDataPrimitivePatch< PatchType > >::indexedOctree(), ZoneMesh< cellZone, polyMesh >::indices(), faBoundaryMesh::indices(), polyBoundaryMesh::indices(), injectionModelList::info(), transferModelList::info(), dynamicRefineFvMesh::init(), calculatedProcessorFvPatchField< Type >::initEvaluate(), InjectedParticleInjection< CloudType >::initialise(), InjectedParticleDistributionInjection< CloudType >::initialise(), heatExchangerModel::initialise(), surfaceNoise::initialise(), viewFactor::initialise(), nullSpace::initialise(), extractEulerianParticles::initialiseBins(), fluxSummary::initialiseCellZoneAndDirection(), fluxSummary::initialiseFaceZone(), fluxSummary::initialiseFaceZoneAndDirection(), fluxSummary::initialiseSurfaceAndDirection(), optimisationManager::initialize(), lduCalculatedProcessorField< Type >::initInterfaceMatrixUpdate(), calculatedProcessorFvPatchField< Type >::initInterfaceMatrixUpdate(), LduMatrix< Type, DType, LUType >::initMatrixInterfaces(), lduMatrix::initMatrixInterfaces(), processorPolyPatch::initOrder(), mappedPatchFieldBase< scalar >::initRetrieveField(), Foam::inplaceSubset(), Foam::inplaceUniqueSort(), NURBSbasis::insertKnot(), distribution::insertMissingKeys(), correlationFunction< Type >::integral(), polynomialFunction::integrate(), FieldFunction1< Function1Type >::integrate(), linearInterpolationWeights::integrationWeights(), vtuAdaptor::internal(), AssemblyFvPatch< CyclicType >::internalFieldTransfer(), cyclicACMIGAMGInterface::internalFieldTransfer(), cyclicAMIGAMGInterface::internalFieldTransfer(), cyclicAMIPolyPatch::interpolate(), leastSquaresEdgeInterpolation< Type >::interpolate(), patchTransformedInterpolation::interpolate(), edgeInterpolationScheme< scalar >::interpolate(), surfaceInterpolationScheme< GType >::interpolate(), topODesignVariables::interpolate(), singleCellFvMesh::interpolate(), cellCellStencil::interpolate(), volPointInterpolation::interpolateDimensionedInternalField(), cellVolumeWeight::interpolatePatchTypes(), Foam::interpolatePointToCell(), Foam::interpolateSplineXY(), AMIInterpolation::interpolateToSource(), AMIInterpolation::interpolateToTarget(), interpolationTable< scalar >::interpolateValues(), Foam::interpolateXY(), intersectedSurface::intersectedSurface(), Foam::inv(), gradingDescriptors::inv(), NURBS3DCurve::invert(), NURBS3DSurface::invertU(), NURBS3DSurface::invertUV(), NURBS3DSurface::invertV(), LBFGS::invHessianVectorProduct(), Foam::invTransform(), coordinateSystem::invTransformPointImpl(), prismMatcher::isA(), tetWedgeMatcher::isA(), wedgeMatcher::isA(), isoSurfaceCell::isoSurfaceCell(), isoSurfacePoint::isoSurfacePoint(), isoSurfaceTopo::isoSurfaceTopo(), triSurfaceMesh::isSurfaceClosed(), liquidMixtureProperties::kappa(), cell::labels(), sliceRange::labels(), layerParameters::layerParameters(), lduPrimitiveMesh::lduPrimitiveMesh(), NURBS3DCurve::length(), Foam::MULES::limiter(), Foam::MULES::limiterCorr(), lineDivide::lineDivide(), UPstream::listScatterValues(), triSurfaceLoader::load(), distributedTriSurfaceMesh::localQueries(), face::longestEdge(), fileOperation::lookupAndCacheProcessorsPath(), zone::lookupMap(), lookupProfile::lookupProfile(), cellCuts::loopPoints(), Foam::mag(), Foam::magSqr(), volPointInterpolationAdjoint::makeBoundaryWeights(), deltaBoundary::makeCellCentres_d(), cyclicFaPatch::makeDeltaCoeffs(), primitiveMeshTools::makeFaceCentresAndAreas(), deltaBoundary::makeFaceCentresAndAreas_d(), faceCoupleInfo::makeMap(), polyTopoChange::makeMesh(), voxelMeshSearch::makeMesh(), averageNeighbourFvGeometryScheme::makeNonOrthoWeights(), cyclicFaPatch::makeWeights(), omegaWallFunctionFvPatchScalarField::manipulateMatrix(), epsilonWallFunctionFvPatchScalarField::manipulateMatrix(), Field< Foam::vector >::map(), cyclicACMIPolyPatch::mapCollocatedFaces(), fvMeshAdder::MapDimField(), mapDistribute::mapDistribute(), mapDistributeBase::mapDistributeBase(), fvMesh::mapFields(), Foam::MapLagrangianFields(), meshToMesh::mapSrcToTgt(), meshToMesh::mapTgtToSrc(), trackingInverseDistance::markDonors(), inverseDistance::markDonors(), edgeCollapser::markMergeEdges(), PatchTools::markZone(), triSurface::markZone(), PatchTools::markZones(), triSurface::markZones(), momentOfInertia::massPropertiesShell(), momentOfInertia::massPropertiesSolid(), masterUncollatedFileOperation::masterOp(), degenerateMatcher::match(), processorPolyPatch::matchFace(), Foam::matchPoints(), Foam::max(), noiseFFT::meanPf(), distribution::median(), Distribution< Type >::median(), cellToCellStencil::merge(), cellToFaceStencil::merge(), edgeIntersections::merge(), meshRefinement::mergeBaffles(), meshRefinement::mergeEdgesUndo(), meshRefinement::mergeFreeStandingBaffles(), triSurfaceTools::mergePoints(), globalMeshData::mergePoints(), extendedEdgeMesh::mergePointsAndSort(), fileOperation::mergeTimes(), meshRefinement::mergeZoneBaffles(), nullSpace::meritFunctionDirectionalDerivative(), cellShape::meshEdges(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::meshEdges(), MeshedSurface< Foam::face >::MeshedSurface(), cellShape::meshFaces(), momentOfInertia::meshInertia(), Foam::min(), edgeIntersections::minEdgeLength(), Foam::minMagSqr(), fieldSmoother::minSmoothField(), attachDetach::modifyMotionPoints(), slidingInterface::modifyMotionPoints(), regionModel1D::moveMesh(), solidBodyFvGeometryScheme::movePoints(), polyTopoChange::movePoints(), polyMesh::movePoints(), globalIndex::mpiGather(), globalIndex::mpiGatherOp(), multiDirRefinement::multiDirRefinement(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::nBoundaryEdges(), FaceCellWaveBase::nChangedCells(), PatchEdgeFaceWaveBase::nChangedEdges(), PointEdgeWaveBase::nChangedEdges(), PatchEdgeFaceWaveBase::nChangedFaces(), FaceCellWaveBase::nChangedFaces(), PointEdgeWaveBase::nChangedPoints(), UPstream::nComms(), surfaceFeatures::nearestEdges(), extendedEdgeMesh::nearestFeatureEdge(), meshRefinement::nearestIntersection(), surfaceFeatures::nearestSamples(), surfaceFeatures::nearestSurfEdge(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::nEdges(), LduMatrix< Type, DType, LUType >::negSumDiag(), lduMatrix::negSumDiag(), polyBoundaryMesh::neighbourEdges(), combustionModel::New(), processorTopology::New(), chemistryTabulationMethod< ReactionThermo, ThermoType >::New(), chemistryReductionMethod< ReactionThermo, ThermoType >::New(), surfMesh::nFaces(), faPatch::ngbPolyPatchPointNormals(), potential::nIds(), mapDistributeBase::nMaps(), cellCuts::nonAnchorPoints(), nonBlockingGaussSeidelSmoother::nonBlockingGaussSeidelSmoother(), surfaceLocation::normal(), distribution::normalisedShifted(), AMIInterpolation::normaliseWeights(), surfMesh::nPoints(), faPatch::nPoints(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::nPoints(), UPstream::commsStruct::nProcs(), UPstream::nProcs(), refinementSurfaces::nRegions(), nullSpace::nullSpace(), marchingCells::numberOfAddedCells(), noiseFFT::octaves(), noiseModel::octaves(), offsetSurface::offsetSurface(), coordinateSystem::oneToManyImpl(), coordinateSystem::oneToOneImpl(), dlLibraryTable::open(), projectVertex::operator point(), csvTableReader< Type >::operator()(), interpolation2DTable< scalar >::operator()(), polynomialFunction::operator+=(), polynomialFunction::operator-=(), Foam::operator<<(), BiIndirectList< T >::operator=(), cellTable::operator=(), HashSet< word, Hash< word > >::operator=(), FixedList< point, 2 >::operator=(), Foam::operator==(), Foam::operator>>(), interpolationTable< scalar >::operator[](), Foam::operator^(), cell::opposingFace(), cell::opposingFaceLabel(), processorPolyPatch::order(), oscillatingVelocityPointPatchVectorField::oscillatingVelocityPointPatchVectorField(), triSurfaceTools::otherFace(), updateMethod::outerProd(), distributedTriSurfaceMesh::overlappingSurface(), treeDataFace::overlaps(), oversetGAMGInterface::oversetGAMGInterface(), PackedList< 2 >::PackedList(), pairPatchAgglomeration::pairPatchAgglomeration(), coupledFaPatch::parallel(), argList::parse(), Foam::parseStream(), ParticleCollector< CloudType >::ParticleCollector(), ParticleZoneInfo< CloudType >::ParticleZoneInfo(), NURBS3DVolume::patchDxDbFace(), polyBoundaryMesh::patchID(), sampledPatch::patchIDs(), boundaryMesh::patchify(), patchInjection::patchInjectedMassTotals(), patchInjection::patchInjection(), polyBoundaryMesh::patchSizes(), patchZones::patchZones(), exprValue::peekType(), SprayCloud< Foam::DSMCCloud >::penetration(), noiseFFT::Pf(), noiseModel::Pf(), primitiveMesh::pointCells(), pointFieldReconstructor::pointFieldReconstructor(), polyMesh::pointInCell(), pointMVCWeight::pointMVCWeight(), PatchTools::pointNormals(), primitiveMesh::pointPoints(), vtuAdaptor::points(), cell::points(), Foam::vtk::Tools::Points(), PrimitivePatchInterpolation< Foam::PrimitivePatch >::pointToFaceInterpolate(), polyAddFace::polyAddFace(), Foam::polyMeshZipUpCells(), polyModifyFace::polyModifyFace(), Polynomial< 8 >::Polynomial(), projectCurveEdge::position(), projectEdge::position(), bezier::position(), blockEdge::position(), Foam::pow(), powerLawLopesdaCostaZone::powerLawLopesdaCostaZone(), noPreconditioner::precondition(), DICPreconditioner::precondition(), DILUPreconditioner::precondition(), GAMGPreconditioner::precondition(), diagonalPreconditioner::precondition(), FDICPreconditioner::precondition(), distributedDILUPreconditioner::precondition(), DILUPreconditioner::preconditionT(), PDRblock::gridControl::prepend(), Foam::prependList(), pressureInletOutletVelocityFvPatchVectorField::pressureInletOutletVelocityFvPatchVectorField(), filmTurbulenceModel::primaryRegionFriction(), foamToVtkReportFields::print(), cuttingSurface::print(), seriesWriter::print(), sampledPatchInternalField::print(), sampledPlane::print(), sampledFaceZone::print(), sampledPatch::print(), sampledMeshedSurface::print(), sampledCuttingPlane::print(), distanceSurface::print(), dynamicIndexedOctree< Foam::dynamicTreeDataPoint >::print(), indexedOctree< Foam::treeDataPrimitivePatch< PatchType > >::print(), mapDistribute::printLayout(), GAMGAgglomeration::printLevels(), Foam::printMaps(), fileOperation::printRanks(), Foam::printRootsSubscription(), GAMGProcAgglomeration::printStats(), basicThermo::printThermoNames(), GAMGAgglomeration::procAgglomerateLduAddressing(), GAMGAgglomeration::procAgglomerateRestrictAddressing(), genericPatchFieldBase::processEntry(), faFieldDecomposer::processorAreaPatchFieldDecomposer::processorAreaPatchFieldDecomposer(), processorGAMGInterface::processorGAMGInterface(), collatedFileOperation::processorsDir(), fvFieldDecomposer::processorVolPatchFieldDecomposer::processorVolPatchFieldDecomposer(), faceAreaWeightAMI::processSourceFace(), particle< Type >::procTetPt(), projectCurveEdge::projectCurveEdge(), projectEdge::projectEdge(), projectVertex::projectVertex(), noiseFFT::PSDf(), List< Field< scalar > >::push_back(), DynamicList< Foam::vector >::push_back(), DynamicField< Foam::vector >::push_back(), CircularBuffer< T >::push_back(), FIRECore::putFireLabels(), cutFaceAdvect::quadAreaCoeffs(), interpolationTable< scalar >::rateOfChange(), face::rcEdges(), Foam::Re(), Reaction< ReactionThermo >::reactionStr(), OBJsurfaceFormat< Face >::read(), NASedgeFormat::read(), STARCDsurfaceFormat< Face >::read(), OBJedgeFormat::read(), TRIsurfaceFormat< Face >::read(), NASsurfaceFormat< Face >::read(), tabulated6DoFAcceleration::read(), VTKsurfaceFormat< Face >::read(), STARCDedgeFormat::read(), tabulated6DoFMotion::read(), multiRegion::read(), STLsurfaceFormat< Face >::read(), binModel::read(), boundaryMesh::read(), fluxSummary::read(), ITstream::read(), masterUncollatedFileOperation::readAndSend(), STARCDMeshReader::readBoundary(), designVariables::readBounds(), STARCDMeshReader::readCells(), Time::readDict(), waveModel::readDict(), lumpedPointMovement::readDict(), triSurfaceLoader::readDir(), Foam::readDir(), levelSetDesignVariables::readField(), Foam::readFields(), ReactingParcel< ParcelType >::readFields(), ReactingMultiphaseParcel< ParcelType >::readFields(), ensightSurfaceReader::readGeometry(), Foam::readLagrangian(), CircularBuffer< T >::readList(), UList< Foam::vector >::readList(), ReactingParcel< ParcelType >::readObjects(), Foam::readObjVertices(), faMeshTools::readProcAddressing(), fvMeshTools::readProcAddressing(), ABAQUSCore::readHelper::readSurfaceElements(), boundaryMesh::readTriSurface(), Foam::readUniformFields(), surfMesh::readUpdate(), mapDistributeBase::receive(), InteractionLists< typename CloudType::parcelType >::receiveReferredData(), isoAlpha::reconstruct(), lagrangianReconstructor::reconstructFieldField(), processorMeshes::reconstructPoints(), triSurfaceTools::redGreenRefine(), PFA< CompType, ThermoType >::reduceMechanism(), DAC< CompType, ThermoType >::reduceMechanism(), DRGEP< CompType, ThermoType >::reduceMechanism(), box::refineBox(), meshRefinement::refineCandidates(), refinementHistory::refinementHistory(), refinementParameters::refinementParameters(), searchableSurfaceCollection::regions(), edgeMesh::regions(), regionSplit2D::regionSplit2D(), hashedWordList::rehash(), Foam::ReImSum(), UnsortedMeshedSurface< Face >::remapFaces(), MeshedSurface< Foam::face >::remapFaces(), fvMeshTools::removeEmptyPatches(), meshRefinement::removeGapCells(), dynamicIndexedOctree< Foam::dynamicTreeDataPoint >::removeIndex(), RemoveParcels< CloudType >::RemoveParcels(), undoableMeshCutter::removeSplitFaces(), randomRenumber::renumber(), manualRenumber::renumber(), SloanRenumber::renumber(), renumberMethod::renumber(), UPtrList< const Foam::UList >::reorder(), PackedList< 2 >::reserve(), memorybuf::out_dynamic::reserve(), SubList< Type >::reset(), fvMeshSubset::reset(), globalIndex::reset(), vtuSizing::reset(), option::resetApplied(), polyMesh::resetPrimitives(), vtuSizing::resetShapes(), faMatrix< Type >::residual(), fvMatrix< Type >::residual(), GAMGAgglomeration::restrictFaceField(), pairPatchAgglomeration::restrictField(), GAMGAgglomeration::restrictField(), mappedPatchFieldBase< scalar >::retrieveField(), Foam::reverse(), face::reverseFace(), coupledFaPatch::reverseT(), Foam::rewritePatchLabels(), CompositionModel< Foam::ReactingCloud< Foam::DSMCCloud > >::rho(), noiseFFT::RMSmeanPf(), coordinateSystem::rotationsImpl(), face::sameVertices(), sampledMeshedSurface::sampleOnFaces(), sampledSurface::sampleOnFaces(), sampledSurface::sampleOnPoints(), sampledMeshedSurface::sampleOnPoints(), FPCG::scalarSolve(), PPCG::scalarSolveCG(), cyclicACMIPolyPatch::scalePatchFaceAreas(), Pstream::scatterList(), searchableSurfaces::searchableSurfaces(), ITstream::seek(), timeSelector::select(), triSurfaceLoader::select(), extendedEdgeMesh::select(), timeSelector::selected(), surfaceFeatures::selectFeatureEdges(), dynamicRefineFvMesh::selectRefineCells(), dynamicRefineFvMesh::selectUnrefinePoints(), mapDistributeBase::send(), distributedDILUPreconditioner::sendGlobal(), InteractionLists< typename CloudType::parcelType >::sendReferredData(), coupledFaPatch::separated(), coupledPolyPatch::separated(), coupledFaPatch::separation(), Foam::BitOps::set(), cyclicAMIPolyPatch::setAMIFaces(), extractEulerianParticles::setBlockedFaces(), Foam::setBlockFaceCorrespondence(), sizeDistribution::setCellZoneCells(), NURBS3DVolume::setControlPoints(), volumetricBSplinesMotionSolver::setControlPointsMovement(), Time::setControls(), refinementSurfaces::setCurvatureMinLevelFields(), noiseFFT::setData(), faceSetOption::setFaceSelection(), boundaryMesh::setFeatureEdges(), pointPatchField< vector >::setInInternalField(), lumpedPointMovement::setInterpolator(), fvGeometryScheme::setMeshPhi(), refinementSurfaces::setMinLevelFields(), cellVolumeWeightMethod::setNextCells(), mapNearestMethod::setNextNearestCells(), noiseModel::setOctaveBands(), weightedPosition::setPoints(), patchInjectionBase::setPositionAndCell(), box::setRefineFlags(), duplicatePoints::setRefinement(), removeCells::setRefinement(), refinementIterator::setRefinement(), faceCollapser::setRefinement(), perfectInterface::setRefinement(), boundaryCutter::setRefinement(), removePoints::setRefinement(), createShellMesh::setRefinement(), tetDecomposer::setRefinement(), combineFaces::setRefinement(), removeFaces::setRefinement(), meshCutAndRemove::setRefinement(), meshCutter::setRefinement(), edgeCollapser::setRefinement(), addPatchCellLayer::setRefinement(), hexRef8::setRefinement(), masterUncollatedFileOperation::setTime(), coordSetWriter::setTrackTimes(), removePoints::setUnrefinement(), combineFaces::setUnrefinement(), hexRef8::setUnrefinement(), Foam::ListOps::setValue(), regularisationPDE::setValues(), UnsortedMeshedSurface< Face >::setZones(), shellSurfaces::shellSurfaces(), ISQP::ShermanMorrisonPrecon(), PackedList< 2 >::shrink(), liquidMixtureProperties::sigma(), searchableSurfacesQueries::signedDistance(), sixDoFRigidBodyDisplacementPointPatchVectorField::sixDoFRigidBodyDisplacementPointPatchVectorField(), fvFieldDecomposer::patchFieldDecomposer::size(), pointFieldDecomposer::patchFieldDecomposer::size(), faFieldDecomposer::patchFieldDecomposer::size(), BiIndirectList< T >::size(), procLduMatrix::size(), distributedWeightedFvPatchFieldMapper::size(), dynamicTreeDataPoint::size(), collector::size(), DirectFieldMapper< FieldMapperType >::size(), lumpedPointController::size(), solidMixtureProperties::size(), singleCellFvMesh::agglomPatchFieldMapper::size(), liquidMixtureProperties::size(), mergedSurf::size(), fvFieldDecomposer::processorVolPatchFieldDecomposer::size(), faFieldDecomposer::processorAreaPatchFieldDecomposer::size(), faAreaMapper::size(), facePointPatch::size(), ensightPart::size(), fvFieldDecomposer::processorSurfacePatchFieldDecomposer::size(), treeDataPoint::size(), faFieldDecomposer::processorEdgePatchFieldDecomposer::size(), meshToMesh0::patchFieldInterpolator::size(), GAMGInterface::size(), treeDataCell::size(), treeDataFace::size(), treeDataEdge::size(), SLGThermo::SLGThermo(), fieldSmoother::smoothLambdaMuDisplacement(), fieldSmoother::smoothNormals(), fieldSmoother::smoothPatchNormals(), solidMixtureProperties::solidMixtureProperties(), smoothSolver::solve(), LLTMatrix< Type >::solve(), sixDoFRigidBodyMotionSolver::solve(), GAMGSolver::solve(), TDACChemistryModel< CompType, ThermoType >::solve(), oversetFvMeshBase::solveOverset(), fvMatrix< Type >::solveSegregated(), ParSortableList< Type >::sort(), PatchTools::sortedEdgeFaces(), Foam::sortedOrder(), extendedEdgeMesh::sortedOrder(), PatchTools::sortedPointEdges(), UnsortedMeshedSurface< Face >::sortedZones(), MeshedSurface< Foam::face >::sortFacesAndStore(), UPtrList< const Foam::UList >::sortOrder(), extendedEdgeMesh::sortPointsAndEdges(), fileOperation::sortTimes(), meshRefinement::splitFacesUndo(), meshRefinement::splitMeshRegions(), Foam::sqr(), Foam::stabilise(), leastSquares::stencilWeights(), cellVolumeWeight::stencilWeights(), inverseDistance::stencilWeights(), Foam::stepBackwardsToNextPoint(), Foam::stepForwardsToNextPoint(), MeshedSurface< Foam::face >::stitchFaces(), mappedPatchFieldBase< scalar >::storeAndRetrieveField(), hexRef8::storeData(), mappedPatchFieldBase< scalar >::storeField(), fvMesh::storeOldVol(), streamLineParticle::streamLineParticle(), fileOperation::subRanks(), mappedPatchBase::subRegistry(), refinementHistory::subset(), hexRef8::subset(), meshRefinement::subsetBaffles(), faMatrix< Type >::subtractFromInternalField(), fvMatrix< Type >::subtractFromInternalField(), faceZoneSet::subtractSet(), Foam::sum(), Foam::sumCmptMag(), Foam::sumCmptProd(), LduMatrix< Type, DType, LUType >::sumDiag(), lduMatrix::sumDiag(), Foam::sumMag(), LduMatrix< Type, DType, LUType >::sumMagOffDiag(), lduMatrix::sumMagOffDiag(), Foam::sumProd(), Foam::sumSqr(), reconstructionSchemes::surface(), surfaceFeatures::surfaceFeatures(), surfaceIntersection::surfaceIntersection(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::surfaceType(), surfaceZonesInfo::surfaceZonesInfo(), syncTools::swapBoundaryCellList(), syncTools::swapBoundaryCellPositions(), face::symmhash_code(), memorybuf::in_dynamic::sync_gbuffer(), memorybuf::out_dynamic::sync_pbuffer(), syncTools::syncBoundaryFaceList(), globalMeshData::syncData(), syncTools::syncEdgeList(), syncTools::syncEdgeMap(), globalMeshData::syncPointData(), syncTools::syncPointList(), syncTools::syncPointMap(), weightedPosition::syncPoints(), pointToPointPlanarInterpolation::targetSize(), Foam::FieldOps::ternary(), Foam::FieldOps::ternarySelect(), meshRefinement::testSyncBoundaryFaceList(), TGaussSeidelSmoother< Type, DType, LUType >::TGaussSeidelSmoother(), thirdBodyEfficiencies::thirdBodyEfficiencies(), cutFaceAdvect::timeIntegratedArea(), cutFaceAdvect::timeIntegratedFaceFlux(), pointToPointPlanarInterpolation::timeNames(), Foam::BitOps::toc(), CV2D::toPoint2D(), adjointEikonalSolver::topologySensitivities(), MeshedSurface< Foam::face >::transcribe(), MeshedSurface< Foam::face >::transfer(), fvMatrix< Type >::transferFvMatrixCoeffs(), Foam::transform(), fft::transform(), FaceCellWave< Foam::wallPointData< bool > >::transform(), Foam::transformList(), globalIndexAndTransform::transformPatches(), coordinateSystem::transformPointImpl(), rigidBodyMotion::transformPoints(), triSurfaceSearch::tree(), face::triangles(), triSurfaceTools::triangulateFaceCentre(), tetIndices::triIs(), extendedEdgeMesh::trim(), surfaceFeatures::trimFeatures(), streamLineBase::trimToBox(), UIPstream::UIPstream(), uncoupledSixDoFRigidBodyDisplacementPointPatchVectorField::uncoupledSixDoFRigidBodyDisplacementPointPatchVectorField(), fileOperation::uniformFile(), mapDistributeBase::unionCombineMasks(), hashedWordList::uniq(), PrimitivePatch<::Foam::List< labelledTri >, pointField >::uniqBoundaryFaces(), Foam::uniqueOrder(), PackedList< 2 >::unpack(), CompactListList< T >::unpack(), dynamicRefineFvMesh::unrefine(), Foam::unzip(), trackingInverseDistance::update(), cellVolumeWeight::update(), inverseDistance::update(), objectiveNutSqr::update_dJdv(), oversetFvMeshBase::updateAddressing(), noConstraint::updateBounds(), directionInfo::updateCell(), uniformInterpolatedDisplacementPointPatchVectorField::updateCoeffs(), lumpedPointDisplacementPointPatchVectorField::updateCoeffs(), externalWallHeatFluxTemperatureFvPatchScalarField::updateCoeffs(), turbulentTemperatureRadCoupledMixedFvPatchScalarField::updateCoeffs(), humidityTemperatureCoupledMixedFvPatchScalarField::updateCoeffs(), nullSpace::updateCorrectionIndices(), ReactingParcel< ParcelType >::updatedDeltaVolume(), ReactingHeterogeneousParcel< ParcelType >::updatedDeltaVolume(), ReactingMultiphaseParcel< ParcelType >::updatedDeltaVolume(), patchEdgeFaceRegions::updateFace(), SR1::updateHessian(), DBFGS::updateHessian(), BFGS::updateHessian(), processorGAMGInterfaceField::updateInterfaceMatrix(), meshRefinement::updateIntersections(), topoBoolSet::updateLabels(), topoBitSet::updateLabels(), topoSet::updateLabels(), meshRefinement::updateList(), hexRef8Data::updateMesh(), points0MotionSolver::updateMesh(), componentDisplacementMotionSolver::updateMesh(), processorPolyPatch::updateMesh(), processorFaPatch::updateMesh(), CellZoneInjection< CloudType >::updateMesh(), removePoints::updateMesh(), boundaryCutter::updateMesh(), refinementHistory::updateMesh(), addPatchCellLayer::updateMesh(), hexRef8::updateMesh(), polyMesh::updateMesh(), meshRefinement::updateMesh(), solverFieldSelection::updateSelection(), volFieldSelection::updateSelection(), cellZoneSet::updateSet(), pointZoneSet::updateSet(), faceZoneSet::updateSet(), ISQP::updateSizes(), MMA::updateSizes(), thermoSingleLayer::updateSurfaceTemperatures(), kinematicSingleLayer::updateSurfaceVelocities(), dynamicRefineFvMesh::updateTopology(), LBFGS::updateVectors(), nullSpace::updateViolatedIndices(), Foam::HashSetOps::used(), triSurfaceTools::validTri(), polynomialFunction::value(), splineInterpolationWeights::valueWeights(), linearInterpolationWeights::valueWeights(), triSurfaceTools::vertexTriads(), Foam::vtk::Tools::Vertices(), surfaceIteratorPLIC::vofCutCell(), surfaceIteratorIso::vofCutCell(), cuttingSurfaceBase::walkCellCuts(), cellCellStencil::walkFront(), wallBoundedStreamLineParticle::wallBoundedStreamLineParticle(), wallLayerCells::wallLayerCells(), WallLocalSpringSliderDashpot< CloudType >::WallLocalSpringSliderDashpot(), meshReader::warnDuplicates(), reader::warnDuplicates(), meshRefinement::weightedSum(), surfaceFieldValue::weightingFactor(), polyBoundaryMesh::whichPatchFace(), FLMAsurfaceFormat< Face >::write(), X3DsurfaceFormat< Face >::write(), OBJsurfaceFormat< Face >::write(), SMESHsurfaceFormat< Face >::write(), OFFsurfaceFormat< Face >::write(), AC3DsurfaceFormat< Face >::write(), GTSsurfaceFormat< Face >::write(), TRIsurfaceFormat< Face >::write(), STARCDsurfaceFormat< Face >::write(), OBJedgeFormat::write(), ABAQUSsurfaceFormat< Face >::write(), NASsurfaceFormat< Face >::write(), ensightOutputSurface::write(), VTPsurfaceFormat< Face >::write(), VTKsurfaceFormat< Face >::write(), oversetFvMeshBase::write(), STARCDedgeFormat::write(), internalWriter::write(), debugWriter::write(), OFstreamCollator::write(), foamWriter::write(), rawWriter::write(), OBJstream::write(), vtkWriter::write(), regionSizeDistribution::write(), surfaceFieldValue::write(), oversetFvMeshBase::writeAgglomeration(), STLsurfaceFormat< Face >::writeAscii(), STLsurfaceFormat< Face >::writeBinary(), decomposedBlockData::writeBlocks(), volumetricBSplinesDesignVariables::writeBounds(), coordSetWriter::writeBufferContents(), STARCDedgeFormat::writeCase(), VTKsurfaceFormatCore::writeCellData(), VTPsurfaceFormatCore::writeCellData(), triSurfaceTools::writeCloseness(), surfZoneIOList::writeData(), externalCoupledTemperatureMixedFvPatchScalarField::writeData(), lumpedPointMovement::writeData(), faMeshDecomposition::writeDecomposition(), Foam::ensightOutput::Detail::writeFaceLocalField(), Foam::ensightOutput::Detail::writeFieldComponents(), ReactingParcel< ParcelType >::writeFields(), topOVariablesBase::writeFluidSolidInterface(), lumpedPointMovement::writeForcesAndMomentsVTP(), surfaceFieldWriter::writeGeometry(), lagrangianWriter::writeGeometry(), externalCoupled::writeGeometry(), AC3DsurfaceFormatCore::writeHeader(), Foam::ensightOutput::Detail::writeLabelListList(), UList< Foam::vector >::writeList(), Foam::vtk::writeListParallel(), Foam::vtk::writeListsParallel(), faceAreaWeightAMI2D::writeNoMatch(), coupledPolyPatch::writeOBJ(), Foam::meshTools::writeOBJ(), triSurfaceTools::writeOBJ(), extendedEdgeMesh::writeObj(), oversetFvMeshBase::writeObject(), ReactingParcel< ParcelType >::writeObjects(), patchMeshWriter::writePolys(), Foam::ensightOutput::writePolysPoints(), faMeshTools::writeProcAddressing(), fvMeshTools::writeProcAddressing(), lumpedPointMovement::writeStateVTP(), Foam::edgeMeshTools::writeStats(), edgeMesh::writeStats(), searchableSurfaces::writeStats(), surfaceFeatures::writeStats(), extendedEdgeMesh::writeStats(), extendedCellToFaceStencil::writeStencilStats(), surfaceNoise::writeSurfaceData(), topOVariablesBase::writeSurfaceFiles(), abaqusWriter::writeTemplate(), nastranWriter::writeTemplate(), starcdWriter::writeTemplate(), x3dWriter::writeTemplate(), streamLineBase::writeToFile(), GCMMA::writeToFiles(), lumpedPointState::writeVTP(), lumpedPointMovement::writeVTP(), Foam::writeZone(), interpolation2DTable< scalar >::Xi(), liquidMixtureProperties::Xs(), Foam::XstepForwardsToNextPoint(), liquidMixtureProperties::Y(), zeroATCcells::zeroATCcells(), sensitivityTopO::zeroSensInFixedPorousZones(), Foam::zip(), refinementParameters::zonedLocations(), refinementParameters::zonePoints(), boundaryRadiationProperties::zoneTransmissivity(), meshRefinement::zonify(), and UOPBstream::~UOPBstream().