Home
last modified time | relevance | path

Searched refs:oMap (Results 1 – 25 of 83) sorted by relevance

1234

/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/frmts/jp2lura/
H A Djp2luracallbacks.cpp45 static_cast<int>(oMap.size())); in ~JP2LuraMemoryRegistrar()
46 std::map<void*, size_t>::const_iterator oIter = oMap.begin(); in ~JP2LuraMemoryRegistrar()
47 for( ; oIter != oMap.end(); ++oIter ) in ~JP2LuraMemoryRegistrar()
57 CPLAssert( oMap.find(ptr) == oMap.end() ); in Register()
58 oMap[ptr] = nSize; in Register()
63 CPLAssert( oMap.find(ptr) != oMap.end() ); in Unregister()
64 oMap.erase(ptr); in Unregister()
/dports/graphics/gdal/gdal-3.3.3/frmts/jp2lura/
H A Djp2luracallbacks.cpp45 static_cast<int>(oMap.size())); in ~JP2LuraMemoryRegistrar()
46 std::map<void*, size_t>::const_iterator oIter = oMap.begin(); in ~JP2LuraMemoryRegistrar()
47 for( ; oIter != oMap.end(); ++oIter ) in ~JP2LuraMemoryRegistrar()
57 CPLAssert( oMap.find(ptr) == oMap.end() ); in Register()
58 oMap[ptr] = nSize; in Register()
63 CPLAssert( oMap.find(ptr) != oMap.end() ); in Unregister()
64 oMap.erase(ptr); in Unregister()
/dports/graphics/py-gdal/gdal-3.3.3/frmts/jp2lura/
H A Djp2luracallbacks.cpp45 static_cast<int>(oMap.size())); in ~JP2LuraMemoryRegistrar()
46 std::map<void*, size_t>::const_iterator oIter = oMap.begin(); in ~JP2LuraMemoryRegistrar()
47 for( ; oIter != oMap.end(); ++oIter ) in ~JP2LuraMemoryRegistrar()
57 CPLAssert( oMap.find(ptr) == oMap.end() ); in Register()
58 oMap[ptr] = nSize; in Register()
63 CPLAssert( oMap.find(ptr) != oMap.end() ); in Unregister()
64 oMap.erase(ptr); in Unregister()
/dports/graphics/py-gdal/gdal-3.3.3/alg/
H A Dpolygonize.cpp100 static void removeExtremity(MapExtremity& oMap,
104 static void insertExtremity(MapExtremity& oMap,
142 auto oIter = oMap.find(xy); in findExtremityNot()
143 if( oIter == oMap.end() ) in findExtremityNot()
201 void RPolygon::removeExtremity(MapExtremity& oMap, in removeExtremity() argument
205 auto oIter = oMap.find(xy); in removeExtremity()
206 CPLAssert( oIter != oMap.end() ); in removeExtremity()
212 oMap.erase(oIter); in removeExtremity()
229 void RPolygon::insertExtremity(MapExtremity& oMap, in insertExtremity() argument
233 auto oIter = oMap.find(xy); in insertExtremity()
[all …]
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/alg/
H A Dpolygonize.cpp100 static void removeExtremity(MapExtremity& oMap,
104 static void insertExtremity(MapExtremity& oMap,
142 auto oIter = oMap.find(xy); in findExtremityNot()
143 if( oIter == oMap.end() ) in findExtremityNot()
201 void RPolygon::removeExtremity(MapExtremity& oMap, in removeExtremity() argument
205 auto oIter = oMap.find(xy); in removeExtremity()
206 CPLAssert( oIter != oMap.end() ); in removeExtremity()
212 oMap.erase(oIter); in removeExtremity()
229 void RPolygon::insertExtremity(MapExtremity& oMap, in insertExtremity() argument
233 auto oIter = oMap.find(xy); in insertExtremity()
[all …]
/dports/graphics/gdal/gdal-3.3.3/alg/
H A Dpolygonize.cpp100 static void removeExtremity(MapExtremity& oMap,
104 static void insertExtremity(MapExtremity& oMap,
142 auto oIter = oMap.find(xy); in findExtremityNot()
143 if( oIter == oMap.end() ) in findExtremityNot()
201 void RPolygon::removeExtremity(MapExtremity& oMap, in removeExtremity() argument
205 auto oIter = oMap.find(xy); in removeExtremity()
206 CPLAssert( oIter != oMap.end() ); in removeExtremity()
212 oMap.erase(oIter); in removeExtremity()
229 void RPolygon::insertExtremity(MapExtremity& oMap, in insertExtremity() argument
233 auto oIter = oMap.find(xy); in insertExtremity()
[all …]
/dports/devel/R-cran-gdata/gdata/inst/perl/Spreadsheet/ParseExcel/
H A DFmtUnicode.pm33 my $oMap;
34 $oMap = Unicode::Map->new($sMap) if $sMap;
37 _UniMap => $oMap,
H A DFmtJapan2.pm32 my $oMap = Unicode::Map->new('CP932Excel');
38 _UniMap => $oMap,
/dports/textproc/p5-Spreadsheet-ParseExcel/Spreadsheet-ParseExcel-0.65/lib/Spreadsheet/ParseExcel/
H A DFmtUnicode.pm33 my $oMap;
34 $oMap = Unicode::Map->new($sMap) if $sMap;
37 _UniMap => $oMap,
H A DFmtJapan2.pm32 my $oMap = Unicode::Map->new('CP932Excel');
38 _UniMap => $oMap,
/dports/graphics/py-gdal/gdal-3.3.3/ogr/ogrsf_frmts/gml/
H A Dgmlutils.cpp137 std::map<std::string, SRSDesc> oMap; member in SRSCache
146 for( oIter = oMap.begin(); oIter != oMap.end(); ++oIter ) in ~SRSCache()
158 std::map<std::string, SRSDesc>::iterator oIter = oMap.find(osSRSName); in Get()
159 if( oIter != oMap.end() ) in Get()
175 oMap[osSRSName] = oLastDesc; in Get()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/ogr/ogrsf_frmts/gml/
H A Dgmlutils.cpp137 std::map<std::string, SRSDesc> oMap; member in SRSCache
146 for( oIter = oMap.begin(); oIter != oMap.end(); ++oIter ) in ~SRSCache()
158 std::map<std::string, SRSDesc>::iterator oIter = oMap.find(osSRSName); in Get()
159 if( oIter != oMap.end() ) in Get()
175 oMap[osSRSName] = oLastDesc; in Get()
/dports/graphics/gdal/gdal-3.3.3/ogr/ogrsf_frmts/gml/
H A Dgmlutils.cpp137 std::map<std::string, SRSDesc> oMap; member in SRSCache
146 for( oIter = oMap.begin(); oIter != oMap.end(); ++oIter ) in ~SRSCache()
158 std::map<std::string, SRSDesc>::iterator oIter = oMap.find(osSRSName); in Get()
159 if( oIter != oMap.end() ) in Get()
175 oMap[osSRSName] = oLastDesc; in Get()
/dports/devel/upp/upp/bazaar/plugin/gdal/ogr/ogrsf_frmts/gml/
H A Dgmlutils.cpp125 std::map<std::string, SRSDesc> oMap; member in SRSCache
137 for( oIter = oMap.begin(); oIter != oMap.end(); ++oIter ) in ~SRSCache()
149 std::map<std::string, SRSDesc>::iterator oIter = oMap.find(osSRSName); in Get()
150 if( oIter != oMap.end() ) in Get()
164 oMap[osSRSName] = oLastDesc; in Get()
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack.Text/src/ServiceStack.Text/Common/
H A DWriteDictionary.cs25 object oMap, in WriteMapDelegate() argument
95 public static void WriteIDictionary(TextWriter writer, object oMap) in WriteIDictionary() argument
103 var map = (IDictionary)oMap; in WriteIDictionary()
166 object oMap, in WriteIDictionary() argument
171 WriteGenericIDictionary(writer, (IDictionary<TKey, TValue>)oMap, writeKeyFn, writeValueFn); in WriteIDictionary()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/frmts/pds/
H A Dvicardataset.cpp1668 auto oMap = oLabel.GetObj("PROPERTY/MAP"); in BuildLabel() local
1669 if( oMap.IsValid() && in BuildLabel()
1670 oMap.GetType() == CPLJSONObject::Type::Object ) in BuildLabel()
1673 oMap.Set( "TARGET_NAME", m_osTargetName ); in BuildLabel()
1708 oMap.Add( "TARGET_NAME", osTargetName ); in BuildLabel()
1728 oMap.Add( "CENTER_LONGITUDE", 0.0 ); in BuildLabel()
1729 oMap.Add( "CENTER_LATITUDE", 0.0 ); in BuildLabel()
1741 oMap.Add( "CENTER_LONGITUDE", in BuildLabel()
1750 oMap.Add( "CENTER_LONGITUDE", in BuildLabel()
1752 oMap.Add( "CENTER_LATITUDE", 0.0 ); in BuildLabel()
[all …]
/dports/graphics/gdal/gdal-3.3.3/frmts/pds/
H A Dvicardataset.cpp1668 auto oMap = oLabel.GetObj("PROPERTY/MAP"); in BuildLabel() local
1669 if( oMap.IsValid() && in BuildLabel()
1670 oMap.GetType() == CPLJSONObject::Type::Object ) in BuildLabel()
1673 oMap.Set( "TARGET_NAME", m_osTargetName ); in BuildLabel()
1708 oMap.Add( "TARGET_NAME", osTargetName ); in BuildLabel()
1728 oMap.Add( "CENTER_LONGITUDE", 0.0 ); in BuildLabel()
1729 oMap.Add( "CENTER_LATITUDE", 0.0 ); in BuildLabel()
1741 oMap.Add( "CENTER_LONGITUDE", in BuildLabel()
1750 oMap.Add( "CENTER_LONGITUDE", in BuildLabel()
1752 oMap.Add( "CENTER_LATITUDE", 0.0 ); in BuildLabel()
[all …]
/dports/graphics/py-gdal/gdal-3.3.3/frmts/pds/
H A Dvicardataset.cpp1668 auto oMap = oLabel.GetObj("PROPERTY/MAP"); in BuildLabel() local
1669 if( oMap.IsValid() && in BuildLabel()
1670 oMap.GetType() == CPLJSONObject::Type::Object ) in BuildLabel()
1673 oMap.Set( "TARGET_NAME", m_osTargetName ); in BuildLabel()
1708 oMap.Add( "TARGET_NAME", osTargetName ); in BuildLabel()
1728 oMap.Add( "CENTER_LONGITUDE", 0.0 ); in BuildLabel()
1729 oMap.Add( "CENTER_LATITUDE", 0.0 ); in BuildLabel()
1741 oMap.Add( "CENTER_LONGITUDE", in BuildLabel()
1750 oMap.Add( "CENTER_LONGITUDE", in BuildLabel()
1752 oMap.Add( "CENTER_LATITUDE", 0.0 ); in BuildLabel()
[all …]
/dports/graphics/py-gdal/gdal-3.3.3/ogr/ogrsf_frmts/gmlas/
H A Dogr_gmlas.h979 void SetMapDocNSURIToPrefix(const std::map<CPLString,CPLString>& oMap) in SetMapDocNSURIToPrefix() argument
980 { m_oMapDocNSURIToPrefix = oMap; } in SetMapDocNSURIToPrefix()
1561 void SetMapIgnoredXPathToWarn(const std::map<CPLString,bool>& oMap) in SetMapIgnoredXPathToWarn() argument
1562 { m_oMapIgnoredXPathToWarn = oMap; } in SetMapIgnoredXPathToWarn()
1571 void SetMapSRSNameToInvertedAxis( const std::map<CPLString, bool>& oMap ) in SetMapSRSNameToInvertedAxis() argument
1572 { m_oMapSRSNameToInvertedAxis = oMap; } in SetMapSRSNameToInvertedAxis()
1577 { m_oMapGeomFieldDefnToSRSName = oMap; } in SetMapGeomFieldDefnToSRSName()
1581 void SetMapElementIdToLayer(std::map<CPLString, OGRGMLASLayer*>& oMap) in SetMapElementIdToLayer() argument
1582 { m_oMapElementIdToLayer = oMap; } in SetMapElementIdToLayer()
1586 void SetMapElementIdToPKID(const std::map<CPLString, CPLString>& oMap ) in SetMapElementIdToPKID() argument
[all …]
H A Dogrgmlasconf.cpp233 std::map<CPLString, CPLString>& oMap) in ParseNamespaces() argument
249 if( oMap.find(osPrefix) == in ParseNamespaces()
250 oMap.end() ) in ParseNamespaces()
252 oMap[osPrefix] = osURI; in ParseNamespaces()
260 oMap[osPrefix]. in ParseNamespaces()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/ogr/ogrsf_frmts/gmlas/
H A Dogr_gmlas.h979 void SetMapDocNSURIToPrefix(const std::map<CPLString,CPLString>& oMap)
980 { m_oMapDocNSURIToPrefix = oMap; }
1561 void SetMapIgnoredXPathToWarn(const std::map<CPLString,bool>& oMap)
1562 { m_oMapIgnoredXPathToWarn = oMap; }
1571 void SetMapSRSNameToInvertedAxis( const std::map<CPLString, bool>& oMap )
1572 { m_oMapSRSNameToInvertedAxis = oMap; }
1577 { m_oMapGeomFieldDefnToSRSName = oMap; }
1581 void SetMapElementIdToLayer(std::map<CPLString, OGRGMLASLayer*>& oMap)
1582 { m_oMapElementIdToLayer = oMap; }
1586 void SetMapElementIdToPKID(const std::map<CPLString, CPLString>& oMap )
[all …]
H A Dogrgmlasconf.cpp233 std::map<CPLString, CPLString>& oMap) in ParseNamespaces() argument
249 if( oMap.find(osPrefix) == in ParseNamespaces()
250 oMap.end() ) in ParseNamespaces()
252 oMap[osPrefix] = osURI; in ParseNamespaces()
260 oMap[osPrefix]. in ParseNamespaces()
/dports/graphics/gdal/gdal-3.3.3/ogr/ogrsf_frmts/gmlas/
H A Dogr_gmlas.h979 void SetMapDocNSURIToPrefix(const std::map<CPLString,CPLString>& oMap) in SetMapDocNSURIToPrefix() argument
980 { m_oMapDocNSURIToPrefix = oMap; } in SetMapDocNSURIToPrefix()
1561 void SetMapIgnoredXPathToWarn(const std::map<CPLString,bool>& oMap) in SetMapIgnoredXPathToWarn() argument
1562 { m_oMapIgnoredXPathToWarn = oMap; } in SetMapIgnoredXPathToWarn()
1571 void SetMapSRSNameToInvertedAxis( const std::map<CPLString, bool>& oMap ) in SetMapSRSNameToInvertedAxis() argument
1572 { m_oMapSRSNameToInvertedAxis = oMap; } in SetMapSRSNameToInvertedAxis()
1577 { m_oMapGeomFieldDefnToSRSName = oMap; } in SetMapGeomFieldDefnToSRSName()
1581 void SetMapElementIdToLayer(std::map<CPLString, OGRGMLASLayer*>& oMap) in SetMapElementIdToLayer() argument
1582 { m_oMapElementIdToLayer = oMap; } in SetMapElementIdToLayer()
1586 void SetMapElementIdToPKID(const std::map<CPLString, CPLString>& oMap ) in SetMapElementIdToPKID() argument
[all …]
H A Dogrgmlasconf.cpp233 std::map<CPLString, CPLString>& oMap) in ParseNamespaces() argument
249 if( oMap.find(osPrefix) == in ParseNamespaces()
250 oMap.end() ) in ParseNamespaces()
252 oMap[osPrefix] = osURI; in ParseNamespaces()
260 oMap[osPrefix]. in ParseNamespaces()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/frmts/netcdf/
H A Dnetcdfwriterconfig.cpp34 CPLXMLNode *psNode, std::map<CPLString, CPLString> &oMap)
40 oMap[pszName] = pszValue;

1234